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"
31 #include <linux/io-mapping.h>
33 /* these defines are made up */
34 #define NV_CIO_CRE_44_HEADA 0x0
35 #define NV_CIO_CRE_44_HEADB 0x3
36 #define FEATURE_MOBILE 0x10 /* also FEATURE_QUADRO for BMP */
37 #define LEGACY_I2C_CRT 0x80
38 #define LEGACY_I2C_PANEL 0x81
39 #define LEGACY_I2C_TV 0x82
43 #define BIOSLOG(sip, fmt, arg...) NV_DEBUG(sip->dev, fmt, ##arg)
44 #define LOG_OLD_VALUE(x)
51 static bool nv_cksum(const uint8_t *data
, unsigned int length
)
54 * There's a few checksums in the BIOS, so here's a generic checking
60 for (i
= 0; i
< length
; i
++)
70 score_vbios(struct drm_device
*dev
, const uint8_t *data
, const bool writeable
)
72 if (!(data
[0] == 0x55 && data
[1] == 0xAA)) {
73 NV_TRACEWARN(dev
, "... BIOS signature not found\n");
77 if (nv_cksum(data
, data
[2] * 512)) {
78 NV_TRACEWARN(dev
, "... BIOS checksum invalid\n");
79 /* if a ro image is somewhat bad, it's probably all rubbish */
80 return writeable
? 2 : 1;
82 NV_TRACE(dev
, "... appears to be valid\n");
87 static void load_vbios_prom(struct drm_device
*dev
, uint8_t *data
)
89 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
90 uint32_t pci_nv_20
, save_pci_nv_20
;
94 if (dev_priv
->card_type
>= NV_50
)
97 pci_nv_20
= NV_PBUS_PCI_NV_20
;
99 /* enable ROM access */
100 save_pci_nv_20
= nvReadMC(dev
, pci_nv_20
);
101 nvWriteMC(dev
, pci_nv_20
,
102 save_pci_nv_20
& ~NV_PBUS_PCI_NV_20_ROM_SHADOW_ENABLED
);
104 /* bail if no rom signature */
105 if (nv_rd08(dev
, NV_PROM_OFFSET
) != 0x55 ||
106 nv_rd08(dev
, NV_PROM_OFFSET
+ 1) != 0xaa)
109 /* additional check (see note below) - read PCI record header */
110 pcir_ptr
= nv_rd08(dev
, NV_PROM_OFFSET
+ 0x18) |
111 nv_rd08(dev
, NV_PROM_OFFSET
+ 0x19) << 8;
112 if (nv_rd08(dev
, NV_PROM_OFFSET
+ pcir_ptr
) != 'P' ||
113 nv_rd08(dev
, NV_PROM_OFFSET
+ pcir_ptr
+ 1) != 'C' ||
114 nv_rd08(dev
, NV_PROM_OFFSET
+ pcir_ptr
+ 2) != 'I' ||
115 nv_rd08(dev
, NV_PROM_OFFSET
+ pcir_ptr
+ 3) != 'R')
118 /* on some 6600GT/6800LE prom reads are messed up. nvclock alleges a
119 * a good read may be obtained by waiting or re-reading (cargocult: 5x)
120 * each byte. we'll hope pramin has something usable instead
122 for (i
= 0; i
< NV_PROM_SIZE
; i
++)
123 data
[i
] = nv_rd08(dev
, NV_PROM_OFFSET
+ i
);
126 /* disable ROM access */
127 nvWriteMC(dev
, pci_nv_20
,
128 save_pci_nv_20
| NV_PBUS_PCI_NV_20_ROM_SHADOW_ENABLED
);
131 static void load_vbios_pramin(struct drm_device
*dev
, uint8_t *data
)
133 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
134 uint32_t old_bar0_pramin
= 0;
137 if (dev_priv
->card_type
>= NV_50
) {
138 uint32_t vbios_vram
= (nv_rd32(dev
, 0x619f04) & ~0xff) << 8;
141 vbios_vram
= (nv_rd32(dev
, 0x1700) << 16) + 0xf0000;
143 old_bar0_pramin
= nv_rd32(dev
, 0x1700);
144 nv_wr32(dev
, 0x1700, vbios_vram
>> 16);
147 /* bail if no rom signature */
148 if (nv_rd08(dev
, NV_PRAMIN_OFFSET
) != 0x55 ||
149 nv_rd08(dev
, NV_PRAMIN_OFFSET
+ 1) != 0xaa)
152 for (i
= 0; i
< NV_PROM_SIZE
; i
++)
153 data
[i
] = nv_rd08(dev
, NV_PRAMIN_OFFSET
+ i
);
156 if (dev_priv
->card_type
>= NV_50
)
157 nv_wr32(dev
, 0x1700, old_bar0_pramin
);
160 static void load_vbios_pci(struct drm_device
*dev
, uint8_t *data
)
162 void __iomem
*rom
= NULL
;
166 ret
= pci_enable_rom(dev
->pdev
);
170 rom
= pci_map_rom(dev
->pdev
, &rom_len
);
173 memcpy_fromio(data
, rom
, rom_len
);
174 pci_unmap_rom(dev
->pdev
, rom
);
177 pci_disable_rom(dev
->pdev
);
180 static void load_vbios_acpi(struct drm_device
*dev
, uint8_t *data
)
184 int size
= 64 * 1024;
186 if (!nouveau_acpi_rom_supported(dev
->pdev
))
189 for (i
= 0; i
< (size
/ ROM_BIOS_PAGE
); i
++) {
190 ret
= nouveau_acpi_get_bios_chunk(data
,
201 void (*loadbios
)(struct drm_device
*, uint8_t *);
205 static struct methods shadow_methods
[] = {
206 { "PRAMIN", load_vbios_pramin
, true },
207 { "PROM", load_vbios_prom
, false },
208 { "PCIROM", load_vbios_pci
, true },
209 { "ACPI", load_vbios_acpi
, true },
211 #define NUM_SHADOW_METHODS ARRAY_SIZE(shadow_methods)
213 static bool NVShadowVBIOS(struct drm_device
*dev
, uint8_t *data
)
215 struct methods
*methods
= shadow_methods
;
217 int scores
[NUM_SHADOW_METHODS
], i
;
220 for (i
= 0; i
< NUM_SHADOW_METHODS
; i
++)
221 if (!strcasecmp(nouveau_vbios
, methods
[i
].desc
))
224 if (i
< NUM_SHADOW_METHODS
) {
225 NV_INFO(dev
, "Attempting to use BIOS image from %s\n",
228 methods
[i
].loadbios(dev
, data
);
229 if (score_vbios(dev
, data
, methods
[i
].rw
))
233 NV_ERROR(dev
, "VBIOS source \'%s\' invalid\n", nouveau_vbios
);
236 for (i
= 0; i
< NUM_SHADOW_METHODS
; i
++) {
237 NV_TRACE(dev
, "Attempting to load BIOS image from %s\n",
239 data
[0] = data
[1] = 0; /* avoid reuse of previous image */
240 methods
[i
].loadbios(dev
, data
);
241 scores
[i
] = score_vbios(dev
, data
, methods
[i
].rw
);
242 if (scores
[i
] == testscore
)
246 while (--testscore
> 0) {
247 for (i
= 0; i
< NUM_SHADOW_METHODS
; i
++) {
248 if (scores
[i
] == testscore
) {
249 NV_TRACE(dev
, "Using BIOS image from %s\n",
251 methods
[i
].loadbios(dev
, data
);
257 NV_ERROR(dev
, "No valid BIOS image found\n");
261 struct init_tbl_entry
{
265 * > 0: success, length of opcode
266 * 0: success, but abort further parsing of table (INIT_DONE etc)
267 * < 0: failure, table parsing will be aborted
269 int (*handler
)(struct nvbios
*, uint16_t, struct init_exec
*);
272 static int parse_init_table(struct nvbios
*, uint16_t, struct init_exec
*);
274 #define MACRO_INDEX_SIZE 2
276 #define CONDITION_SIZE 12
277 #define IO_FLAG_CONDITION_SIZE 9
278 #define IO_CONDITION_SIZE 5
279 #define MEM_INIT_SIZE 66
281 static void still_alive(void)
290 munge_reg(struct nvbios
*bios
, uint32_t reg
)
292 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
293 struct dcb_entry
*dcbent
= bios
->display
.output
;
295 if (dev_priv
->card_type
< NV_50
)
298 if (reg
& 0x40000000) {
301 reg
+= (ffs(dcbent
->or) - 1) * 0x800;
302 if ((reg
& 0x20000000) && !(dcbent
->sorconf
.link
& 1))
311 valid_reg(struct nvbios
*bios
, uint32_t reg
)
313 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
314 struct drm_device
*dev
= bios
->dev
;
316 /* C51 has misaligned regs on purpose. Marvellous */
318 (reg
& 0x1 && dev_priv
->vbios
.chip_version
!= 0x51))
319 NV_ERROR(dev
, "======= misaligned reg 0x%08X =======\n", reg
);
321 /* warn on C51 regs that haven't been verified accessible in tracing */
322 if (reg
& 0x1 && dev_priv
->vbios
.chip_version
== 0x51 &&
323 reg
!= 0x130d && reg
!= 0x1311 && reg
!= 0x60081d)
324 NV_WARN(dev
, "=== C51 misaligned reg 0x%08X not verified ===\n",
327 if (reg
>= (8*1024*1024)) {
328 NV_ERROR(dev
, "=== reg 0x%08x out of mapped bounds ===\n", reg
);
336 valid_idx_port(struct nvbios
*bios
, uint16_t port
)
338 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
339 struct drm_device
*dev
= bios
->dev
;
342 * If adding more ports here, the read/write functions below will need
343 * updating so that the correct mmio range (PRMCIO, PRMDIO, PRMVIO) is
344 * used for the port in question
346 if (dev_priv
->card_type
< NV_50
) {
347 if (port
== NV_CIO_CRX__COLOR
)
349 if (port
== NV_VIO_SRX
)
352 if (port
== NV_CIO_CRX__COLOR
)
356 NV_ERROR(dev
, "========== unknown indexed io port 0x%04X ==========\n",
363 valid_port(struct nvbios
*bios
, uint16_t port
)
365 struct drm_device
*dev
= bios
->dev
;
368 * If adding more ports here, the read/write functions below will need
369 * updating so that the correct mmio range (PRMCIO, PRMDIO, PRMVIO) is
370 * used for the port in question
372 if (port
== NV_VIO_VSE2
)
375 NV_ERROR(dev
, "========== unknown io port 0x%04X ==========\n", port
);
381 bios_rd32(struct nvbios
*bios
, uint32_t reg
)
385 reg
= munge_reg(bios
, reg
);
386 if (!valid_reg(bios
, reg
))
390 * C51 sometimes uses regs with bit0 set in the address. For these
391 * cases there should exist a translation in a BIOS table to an IO
392 * port address which the BIOS uses for accessing the reg
394 * These only seem to appear for the power control regs to a flat panel,
395 * and the GPIO regs at 0x60081*. In C51 mmio traces the normal regs
396 * for 0x1308 and 0x1310 are used - hence the mask below. An S3
397 * suspend-resume mmio trace from a C51 will be required to see if this
398 * is true for the power microcode in 0x14.., or whether the direct IO
399 * port access method is needed
404 data
= nv_rd32(bios
->dev
, reg
);
406 BIOSLOG(bios
, " Read: Reg: 0x%08X, Data: 0x%08X\n", reg
, data
);
412 bios_wr32(struct nvbios
*bios
, uint32_t reg
, uint32_t data
)
414 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
416 reg
= munge_reg(bios
, reg
);
417 if (!valid_reg(bios
, reg
))
420 /* see note in bios_rd32 */
424 LOG_OLD_VALUE(bios_rd32(bios
, reg
));
425 BIOSLOG(bios
, " Write: Reg: 0x%08X, Data: 0x%08X\n", reg
, data
);
427 if (dev_priv
->vbios
.execute
) {
429 nv_wr32(bios
->dev
, reg
, data
);
434 bios_idxprt_rd(struct nvbios
*bios
, uint16_t port
, uint8_t index
)
436 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
437 struct drm_device
*dev
= bios
->dev
;
440 if (!valid_idx_port(bios
, port
))
443 if (dev_priv
->card_type
< NV_50
) {
444 if (port
== NV_VIO_SRX
)
445 data
= NVReadVgaSeq(dev
, bios
->state
.crtchead
, index
);
446 else /* assume NV_CIO_CRX__COLOR */
447 data
= NVReadVgaCrtc(dev
, bios
->state
.crtchead
, index
);
451 data32
= bios_rd32(bios
, NV50_PDISPLAY_VGACRTC(index
& ~3));
452 data
= (data32
>> ((index
& 3) << 3)) & 0xff;
455 BIOSLOG(bios
, " Indexed IO read: Port: 0x%04X, Index: 0x%02X, "
456 "Head: 0x%02X, Data: 0x%02X\n",
457 port
, index
, bios
->state
.crtchead
, data
);
462 bios_idxprt_wr(struct nvbios
*bios
, uint16_t port
, uint8_t index
, uint8_t data
)
464 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
465 struct drm_device
*dev
= bios
->dev
;
467 if (!valid_idx_port(bios
, port
))
471 * The current head is maintained in the nvbios member state.crtchead.
472 * We trap changes to CR44 and update the head variable and hence the
473 * register set written.
474 * As CR44 only exists on CRTC0, we update crtchead to head0 in advance
475 * of the write, and to head1 after the write
477 if (port
== NV_CIO_CRX__COLOR
&& index
== NV_CIO_CRE_44
&&
478 data
!= NV_CIO_CRE_44_HEADB
)
479 bios
->state
.crtchead
= 0;
481 LOG_OLD_VALUE(bios_idxprt_rd(bios
, port
, index
));
482 BIOSLOG(bios
, " Indexed IO write: Port: 0x%04X, Index: 0x%02X, "
483 "Head: 0x%02X, Data: 0x%02X\n",
484 port
, index
, bios
->state
.crtchead
, data
);
486 if (bios
->execute
&& dev_priv
->card_type
< NV_50
) {
488 if (port
== NV_VIO_SRX
)
489 NVWriteVgaSeq(dev
, bios
->state
.crtchead
, index
, data
);
490 else /* assume NV_CIO_CRX__COLOR */
491 NVWriteVgaCrtc(dev
, bios
->state
.crtchead
, index
, data
);
494 uint32_t data32
, shift
= (index
& 3) << 3;
498 data32
= bios_rd32(bios
, NV50_PDISPLAY_VGACRTC(index
& ~3));
499 data32
&= ~(0xff << shift
);
500 data32
|= (data
<< shift
);
501 bios_wr32(bios
, NV50_PDISPLAY_VGACRTC(index
& ~3), data32
);
504 if (port
== NV_CIO_CRX__COLOR
&&
505 index
== NV_CIO_CRE_44
&& data
== NV_CIO_CRE_44_HEADB
)
506 bios
->state
.crtchead
= 1;
510 bios_port_rd(struct nvbios
*bios
, uint16_t port
)
512 uint8_t data
, head
= bios
->state
.crtchead
;
514 if (!valid_port(bios
, port
))
517 data
= NVReadPRMVIO(bios
->dev
, head
, NV_PRMVIO0_OFFSET
+ port
);
519 BIOSLOG(bios
, " IO read: Port: 0x%04X, Head: 0x%02X, Data: 0x%02X\n",
526 bios_port_wr(struct nvbios
*bios
, uint16_t port
, uint8_t data
)
528 int head
= bios
->state
.crtchead
;
530 if (!valid_port(bios
, port
))
533 LOG_OLD_VALUE(bios_port_rd(bios
, port
));
534 BIOSLOG(bios
, " IO write: Port: 0x%04X, Head: 0x%02X, Data: 0x%02X\n",
541 NVWritePRMVIO(bios
->dev
, head
, NV_PRMVIO0_OFFSET
+ port
, data
);
545 io_flag_condition_met(struct nvbios
*bios
, uint16_t offset
, uint8_t cond
)
548 * The IO flag condition entry has 2 bytes for the CRTC port; 1 byte
549 * for the CRTC index; 1 byte for the mask to apply to the value
550 * retrieved from the CRTC; 1 byte for the shift right to apply to the
551 * masked CRTC value; 2 bytes for the offset to the flag array, to
552 * which the shifted value is added; 1 byte for the mask applied to the
553 * value read from the flag array; and 1 byte for the value to compare
554 * against the masked byte from the flag table.
557 uint16_t condptr
= bios
->io_flag_condition_tbl_ptr
+ cond
* IO_FLAG_CONDITION_SIZE
;
558 uint16_t crtcport
= ROM16(bios
->data
[condptr
]);
559 uint8_t crtcindex
= bios
->data
[condptr
+ 2];
560 uint8_t mask
= bios
->data
[condptr
+ 3];
561 uint8_t shift
= bios
->data
[condptr
+ 4];
562 uint16_t flagarray
= ROM16(bios
->data
[condptr
+ 5]);
563 uint8_t flagarraymask
= bios
->data
[condptr
+ 7];
564 uint8_t cmpval
= bios
->data
[condptr
+ 8];
567 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
568 "Shift: 0x%02X, FlagArray: 0x%04X, FAMask: 0x%02X, "
570 offset
, crtcport
, crtcindex
, mask
, shift
, flagarray
, flagarraymask
, cmpval
);
572 data
= bios_idxprt_rd(bios
, crtcport
, crtcindex
);
574 data
= bios
->data
[flagarray
+ ((data
& mask
) >> shift
)];
575 data
&= flagarraymask
;
577 BIOSLOG(bios
, "0x%04X: Checking if 0x%02X equals 0x%02X\n",
578 offset
, data
, cmpval
);
580 return (data
== cmpval
);
584 bios_condition_met(struct nvbios
*bios
, uint16_t offset
, uint8_t cond
)
587 * The condition table entry has 4 bytes for the address of the
588 * register to check, 4 bytes for a mask to apply to the register and
589 * 4 for a test comparison value
592 uint16_t condptr
= bios
->condition_tbl_ptr
+ cond
* CONDITION_SIZE
;
593 uint32_t reg
= ROM32(bios
->data
[condptr
]);
594 uint32_t mask
= ROM32(bios
->data
[condptr
+ 4]);
595 uint32_t cmpval
= ROM32(bios
->data
[condptr
+ 8]);
598 BIOSLOG(bios
, "0x%04X: Cond: 0x%02X, Reg: 0x%08X, Mask: 0x%08X\n",
599 offset
, cond
, reg
, mask
);
601 data
= bios_rd32(bios
, reg
) & mask
;
603 BIOSLOG(bios
, "0x%04X: Checking if 0x%08X equals 0x%08X\n",
604 offset
, data
, cmpval
);
606 return (data
== cmpval
);
610 io_condition_met(struct nvbios
*bios
, uint16_t offset
, uint8_t cond
)
613 * The IO condition entry has 2 bytes for the IO port address; 1 byte
614 * for the index to write to io_port; 1 byte for the mask to apply to
615 * the byte read from io_port+1; and 1 byte for the value to compare
616 * against the masked byte.
619 uint16_t condptr
= bios
->io_condition_tbl_ptr
+ cond
* IO_CONDITION_SIZE
;
620 uint16_t io_port
= ROM16(bios
->data
[condptr
]);
621 uint8_t port_index
= bios
->data
[condptr
+ 2];
622 uint8_t mask
= bios
->data
[condptr
+ 3];
623 uint8_t cmpval
= bios
->data
[condptr
+ 4];
625 uint8_t data
= bios_idxprt_rd(bios
, io_port
, port_index
) & mask
;
627 BIOSLOG(bios
, "0x%04X: Checking if 0x%02X equals 0x%02X\n",
628 offset
, data
, cmpval
);
630 return (data
== cmpval
);
634 nv50_pll_set(struct drm_device
*dev
, uint32_t reg
, uint32_t clk
)
636 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
637 uint32_t reg0
= nv_rd32(dev
, reg
+ 0);
638 uint32_t reg1
= nv_rd32(dev
, reg
+ 4);
639 struct nouveau_pll_vals pll
;
640 struct pll_lims pll_limits
;
643 ret
= get_pll_limits(dev
, reg
, &pll_limits
);
647 clk
= nouveau_calc_pll_mnp(dev
, &pll_limits
, clk
, &pll
);
651 reg0
= (reg0
& 0xfff8ffff) | (pll
.log2P
<< 16);
652 reg1
= (reg1
& 0xffff0000) | (pll
.N1
<< 8) | pll
.M1
;
654 if (dev_priv
->vbios
.execute
) {
656 nv_wr32(dev
, reg
+ 4, reg1
);
657 nv_wr32(dev
, reg
+ 0, reg0
);
664 setPLL(struct nvbios
*bios
, uint32_t reg
, uint32_t clk
)
666 struct drm_device
*dev
= bios
->dev
;
667 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
669 struct pll_lims pll_lim
;
670 struct nouveau_pll_vals pllvals
;
673 if (dev_priv
->card_type
>= NV_50
)
674 return nv50_pll_set(dev
, reg
, clk
);
676 /* high regs (such as in the mac g5 table) are not -= 4 */
677 ret
= get_pll_limits(dev
, reg
> 0x405c ? reg
: reg
- 4, &pll_lim
);
681 clk
= nouveau_calc_pll_mnp(dev
, &pll_lim
, clk
, &pllvals
);
687 nouveau_hw_setpll(dev
, reg
, &pllvals
);
693 static int dcb_entry_idx_from_crtchead(struct drm_device
*dev
)
695 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
696 struct nvbios
*bios
= &dev_priv
->vbios
;
699 * For the results of this function to be correct, CR44 must have been
700 * set (using bios_idxprt_wr to set crtchead), CR58 set for CR57 = 0,
701 * and the DCB table parsed, before the script calling the function is
702 * run. run_digital_op_script is example of how to do such setup
705 uint8_t dcb_entry
= NVReadVgaCrtc5758(dev
, bios
->state
.crtchead
, 0);
707 if (dcb_entry
> bios
->dcb
.entries
) {
708 NV_ERROR(dev
, "CR58 doesn't have a valid DCB entry currently "
709 "(%02X)\n", dcb_entry
);
710 dcb_entry
= 0x7f; /* unused / invalid marker */
717 read_dcb_i2c_entry(struct drm_device
*dev
, int dcb_version
, uint8_t *i2ctable
, int index
, struct dcb_i2c_entry
*i2c
)
719 uint8_t dcb_i2c_ver
= dcb_version
, headerlen
= 0, entry_len
= 4;
720 int i2c_entries
= DCB_MAX_NUM_I2C_ENTRIES
;
721 int recordoffset
= 0, rdofs
= 1, wrofs
= 0;
722 uint8_t port_type
= 0;
727 if (dcb_version
>= 0x30) {
728 if (i2ctable
[0] != dcb_version
) /* necessary? */
730 "DCB I2C table version mismatch (%02X vs %02X)\n",
731 i2ctable
[0], dcb_version
);
732 dcb_i2c_ver
= i2ctable
[0];
733 headerlen
= i2ctable
[1];
734 if (i2ctable
[2] <= DCB_MAX_NUM_I2C_ENTRIES
)
735 i2c_entries
= i2ctable
[2];
738 "DCB I2C table has more entries than indexable "
739 "(%d entries, max %d)\n", i2ctable
[2],
740 DCB_MAX_NUM_I2C_ENTRIES
);
741 entry_len
= i2ctable
[3];
742 /* [4] is i2c_default_indices, read in parse_dcb_table() */
745 * It's your own fault if you call this function on a DCB 1.1 BIOS --
746 * the test below is for DCB 1.2
748 if (dcb_version
< 0x14) {
756 if (index
>= i2c_entries
) {
757 NV_ERROR(dev
, "DCB I2C index too big (%d >= %d)\n",
761 if (i2ctable
[headerlen
+ entry_len
* index
+ 3] == 0xff) {
762 NV_ERROR(dev
, "DCB I2C entry invalid\n");
766 if (dcb_i2c_ver
>= 0x30) {
767 port_type
= i2ctable
[headerlen
+ recordoffset
+ 3 + entry_len
* index
];
770 * Fixup for chips using same address offset for read and
773 if (port_type
== 4) /* seen on C51 */
775 if (port_type
>= 5) /* G80+ */
779 if (dcb_i2c_ver
>= 0x40) {
780 if (port_type
!= 5 && port_type
!= 6)
781 NV_WARN(dev
, "DCB I2C table has port type %d\n", port_type
);
783 i2c
->entry
= ROM32(i2ctable
[headerlen
+ recordoffset
+ entry_len
* index
]);
786 i2c
->port_type
= port_type
;
787 i2c
->read
= i2ctable
[headerlen
+ recordoffset
+ rdofs
+ entry_len
* index
];
788 i2c
->write
= i2ctable
[headerlen
+ recordoffset
+ wrofs
+ entry_len
* index
];
793 static struct nouveau_i2c_chan
*
794 init_i2c_device_find(struct drm_device
*dev
, int i2c_index
)
796 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
797 struct dcb_table
*dcb
= &dev_priv
->vbios
.dcb
;
799 if (i2c_index
== 0xff) {
800 /* note: dcb_entry_idx_from_crtchead needs pre-script set-up */
801 int idx
= dcb_entry_idx_from_crtchead(dev
), shift
= 0;
802 int default_indices
= dcb
->i2c_default_indices
;
804 if (idx
!= 0x7f && dcb
->entry
[idx
].i2c_upper_default
)
807 i2c_index
= (default_indices
>> shift
) & 0xf;
809 if (i2c_index
== 0x80) /* g80+ */
810 i2c_index
= dcb
->i2c_default_indices
& 0xf;
812 if (i2c_index
== 0x81)
813 i2c_index
= (dcb
->i2c_default_indices
& 0xf0) >> 4;
815 if (i2c_index
>= DCB_MAX_NUM_I2C_ENTRIES
) {
816 NV_ERROR(dev
, "invalid i2c_index 0x%x\n", i2c_index
);
820 /* Make sure i2c table entry has been parsed, it may not
821 * have been if this is a bus not referenced by a DCB encoder
823 read_dcb_i2c_entry(dev
, dcb
->version
, dcb
->i2c_table
,
824 i2c_index
, &dcb
->i2c
[i2c_index
]);
826 return nouveau_i2c_find(dev
, i2c_index
);
830 get_tmds_index_reg(struct drm_device
*dev
, uint8_t mlv
)
833 * For mlv < 0x80, it is an index into a table of TMDS base addresses.
834 * For mlv == 0x80 use the "or" value of the dcb_entry indexed by
835 * CR58 for CR57 = 0 to index a table of offsets to the basic
837 * For mlv == 0x81 use the "or" value of the dcb_entry indexed by
838 * CR58 for CR57 = 0 to index a table of offsets to the basic
839 * 0x6808b0 address, and then flip the offset by 8.
842 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
843 struct nvbios
*bios
= &dev_priv
->vbios
;
844 const int pramdac_offset
[13] = {
845 0, 0, 0x8, 0, 0x2000, 0, 0, 0, 0x2008, 0, 0, 0, 0x2000 };
846 const uint32_t pramdac_table
[4] = {
847 0x6808b0, 0x6808b8, 0x6828b0, 0x6828b8 };
850 int dcb_entry
, dacoffset
;
852 /* note: dcb_entry_idx_from_crtchead needs pre-script set-up */
853 dcb_entry
= dcb_entry_idx_from_crtchead(dev
);
854 if (dcb_entry
== 0x7f)
856 dacoffset
= pramdac_offset
[bios
->dcb
.entry
[dcb_entry
].or];
859 return 0x6808b0 + dacoffset
;
861 if (mlv
>= ARRAY_SIZE(pramdac_table
)) {
862 NV_ERROR(dev
, "Magic Lookup Value too big (%02X)\n",
866 return pramdac_table
[mlv
];
871 init_io_restrict_prog(struct nvbios
*bios
, uint16_t offset
,
872 struct init_exec
*iexec
)
875 * INIT_IO_RESTRICT_PROG opcode: 0x32 ('2')
877 * offset (8 bit): opcode
878 * offset + 1 (16 bit): CRTC port
879 * offset + 3 (8 bit): CRTC index
880 * offset + 4 (8 bit): mask
881 * offset + 5 (8 bit): shift
882 * offset + 6 (8 bit): count
883 * offset + 7 (32 bit): register
884 * offset + 11 (32 bit): configuration 1
887 * Starting at offset + 11 there are "count" 32 bit values.
888 * To find out which value to use read index "CRTC index" on "CRTC
889 * port", AND this value with "mask" and then bit shift right "shift"
890 * bits. Read the appropriate value using this index and write to
894 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
895 uint8_t crtcindex
= bios
->data
[offset
+ 3];
896 uint8_t mask
= bios
->data
[offset
+ 4];
897 uint8_t shift
= bios
->data
[offset
+ 5];
898 uint8_t count
= bios
->data
[offset
+ 6];
899 uint32_t reg
= ROM32(bios
->data
[offset
+ 7]);
902 int len
= 11 + count
* 4;
907 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
908 "Shift: 0x%02X, Count: 0x%02X, Reg: 0x%08X\n",
909 offset
, crtcport
, crtcindex
, mask
, shift
, count
, reg
);
911 config
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) >> shift
;
912 if (config
> count
) {
914 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
915 offset
, config
, count
);
919 configval
= ROM32(bios
->data
[offset
+ 11 + config
* 4]);
921 BIOSLOG(bios
, "0x%04X: Writing config %02X\n", offset
, config
);
923 bios_wr32(bios
, reg
, configval
);
929 init_repeat(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
932 * INIT_REPEAT opcode: 0x33 ('3')
934 * offset (8 bit): opcode
935 * offset + 1 (8 bit): count
937 * Execute script following this opcode up to INIT_REPEAT_END
941 uint8_t count
= bios
->data
[offset
+ 1];
944 /* no iexec->execute check by design */
946 BIOSLOG(bios
, "0x%04X: Repeating following segment %d times\n",
949 iexec
->repeat
= true;
952 * count - 1, as the script block will execute once when we leave this
953 * opcode -- this is compatible with bios behaviour as:
954 * a) the block is always executed at least once, even if count == 0
955 * b) the bios interpreter skips to the op following INIT_END_REPEAT,
958 for (i
= 0; i
< count
- 1; i
++)
959 parse_init_table(bios
, offset
+ 2, iexec
);
961 iexec
->repeat
= false;
967 init_io_restrict_pll(struct nvbios
*bios
, uint16_t offset
,
968 struct init_exec
*iexec
)
971 * INIT_IO_RESTRICT_PLL opcode: 0x34 ('4')
973 * offset (8 bit): opcode
974 * offset + 1 (16 bit): CRTC port
975 * offset + 3 (8 bit): CRTC index
976 * offset + 4 (8 bit): mask
977 * offset + 5 (8 bit): shift
978 * offset + 6 (8 bit): IO flag condition index
979 * offset + 7 (8 bit): count
980 * offset + 8 (32 bit): register
981 * offset + 12 (16 bit): frequency 1
984 * Starting at offset + 12 there are "count" 16 bit frequencies (10kHz).
985 * Set PLL register "register" to coefficients for frequency n,
986 * selected by reading index "CRTC index" of "CRTC port" ANDed with
987 * "mask" and shifted right by "shift".
989 * If "IO flag condition index" > 0, and condition met, double
990 * frequency before setting it.
993 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
994 uint8_t crtcindex
= bios
->data
[offset
+ 3];
995 uint8_t mask
= bios
->data
[offset
+ 4];
996 uint8_t shift
= bios
->data
[offset
+ 5];
997 int8_t io_flag_condition_idx
= bios
->data
[offset
+ 6];
998 uint8_t count
= bios
->data
[offset
+ 7];
999 uint32_t reg
= ROM32(bios
->data
[offset
+ 8]);
1002 int len
= 12 + count
* 2;
1004 if (!iexec
->execute
)
1007 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
1008 "Shift: 0x%02X, IO Flag Condition: 0x%02X, "
1009 "Count: 0x%02X, Reg: 0x%08X\n",
1010 offset
, crtcport
, crtcindex
, mask
, shift
,
1011 io_flag_condition_idx
, count
, reg
);
1013 config
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) >> shift
;
1014 if (config
> count
) {
1016 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
1017 offset
, config
, count
);
1021 freq
= ROM16(bios
->data
[offset
+ 12 + config
* 2]);
1023 if (io_flag_condition_idx
> 0) {
1024 if (io_flag_condition_met(bios
, offset
, io_flag_condition_idx
)) {
1025 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- "
1026 "frequency doubled\n", offset
);
1029 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- "
1030 "frequency unchanged\n", offset
);
1033 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Config: 0x%02X, Freq: %d0kHz\n",
1034 offset
, reg
, config
, freq
);
1036 setPLL(bios
, reg
, freq
* 10);
1042 init_end_repeat(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1045 * INIT_END_REPEAT opcode: 0x36 ('6')
1047 * offset (8 bit): opcode
1049 * Marks the end of the block for INIT_REPEAT to repeat
1052 /* no iexec->execute check by design */
1055 * iexec->repeat flag necessary to go past INIT_END_REPEAT opcode when
1056 * we're not in repeat mode
1065 init_copy(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1068 * INIT_COPY opcode: 0x37 ('7')
1070 * offset (8 bit): opcode
1071 * offset + 1 (32 bit): register
1072 * offset + 5 (8 bit): shift
1073 * offset + 6 (8 bit): srcmask
1074 * offset + 7 (16 bit): CRTC port
1075 * offset + 9 (8 bit): CRTC index
1076 * offset + 10 (8 bit): mask
1078 * Read index "CRTC index" on "CRTC port", AND with "mask", OR with
1079 * (REGVAL("register") >> "shift" & "srcmask") and write-back to CRTC
1083 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
1084 uint8_t shift
= bios
->data
[offset
+ 5];
1085 uint8_t srcmask
= bios
->data
[offset
+ 6];
1086 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 7]);
1087 uint8_t crtcindex
= bios
->data
[offset
+ 9];
1088 uint8_t mask
= bios
->data
[offset
+ 10];
1092 if (!iexec
->execute
)
1095 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Shift: 0x%02X, SrcMask: 0x%02X, "
1096 "Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X\n",
1097 offset
, reg
, shift
, srcmask
, crtcport
, crtcindex
, mask
);
1099 data
= bios_rd32(bios
, reg
);
1104 data
<<= (0x100 - shift
);
1108 crtcdata
= bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
;
1109 crtcdata
|= (uint8_t)data
;
1110 bios_idxprt_wr(bios
, crtcport
, crtcindex
, crtcdata
);
1116 init_not(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1119 * INIT_NOT opcode: 0x38 ('8')
1121 * offset (8 bit): opcode
1123 * Invert the current execute / no-execute condition (i.e. "else")
1126 BIOSLOG(bios
, "0x%04X: ------ Skipping following commands ------\n", offset
);
1128 BIOSLOG(bios
, "0x%04X: ------ Executing following commands ------\n", offset
);
1130 iexec
->execute
= !iexec
->execute
;
1135 init_io_flag_condition(struct nvbios
*bios
, uint16_t offset
,
1136 struct init_exec
*iexec
)
1139 * INIT_IO_FLAG_CONDITION opcode: 0x39 ('9')
1141 * offset (8 bit): opcode
1142 * offset + 1 (8 bit): condition number
1144 * Check condition "condition number" in the IO flag condition table.
1145 * If condition not met skip subsequent opcodes until condition is
1146 * inverted (INIT_NOT), or we hit INIT_RESUME
1149 uint8_t cond
= bios
->data
[offset
+ 1];
1151 if (!iexec
->execute
)
1154 if (io_flag_condition_met(bios
, offset
, cond
))
1155 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
1157 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
1158 iexec
->execute
= false;
1165 init_dp_condition(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1168 * INIT_DP_CONDITION opcode: 0x3A ('')
1170 * offset (8 bit): opcode
1171 * offset + 1 (8 bit): "sub" opcode
1172 * offset + 2 (8 bit): unknown
1176 struct bit_displayport_encoder_table
*dpe
= NULL
;
1177 struct dcb_entry
*dcb
= bios
->display
.output
;
1178 struct drm_device
*dev
= bios
->dev
;
1179 uint8_t cond
= bios
->data
[offset
+ 1];
1182 BIOSLOG(bios
, "0x%04X: subop 0x%02X\n", offset
, cond
);
1184 if (!iexec
->execute
)
1187 dpe
= nouveau_bios_dp_table(dev
, dcb
, &dummy
);
1189 NV_ERROR(dev
, "0x%04X: INIT_3A: no encoder table!!\n", offset
);
1196 struct dcb_connector_table_entry
*ent
=
1197 &bios
->dcb
.connector
.entry
[dcb
->connector
];
1199 if (ent
->type
!= DCB_CONNECTOR_eDP
)
1200 iexec
->execute
= false;
1205 if (!(dpe
->unknown
& cond
))
1206 iexec
->execute
= false;
1210 struct nouveau_i2c_chan
*auxch
;
1213 auxch
= nouveau_i2c_find(dev
, bios
->display
.output
->i2c_index
);
1215 NV_ERROR(dev
, "0x%04X: couldn't get auxch\n", offset
);
1219 ret
= nouveau_dp_auxch(auxch
, 9, 0xd, &cond
, 1);
1221 NV_ERROR(dev
, "0x%04X: auxch rd fail: %d\n", offset
, ret
);
1226 iexec
->execute
= false;
1230 NV_WARN(dev
, "0x%04X: unknown INIT_3A op: %d\n", offset
, cond
);
1235 BIOSLOG(bios
, "0x%04X: continuing to execute\n", offset
);
1237 BIOSLOG(bios
, "0x%04X: skipping following commands\n", offset
);
1243 init_op_3b(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1246 * INIT_3B opcode: 0x3B ('')
1248 * offset (8 bit): opcode
1249 * offset + 1 (8 bit): crtc index
1253 uint8_t or = ffs(bios
->display
.output
->or) - 1;
1254 uint8_t index
= bios
->data
[offset
+ 1];
1257 if (!iexec
->execute
)
1260 data
= bios_idxprt_rd(bios
, 0x3d4, index
);
1261 bios_idxprt_wr(bios
, 0x3d4, index
, data
& ~(1 << or));
1266 init_op_3c(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1269 * INIT_3C opcode: 0x3C ('')
1271 * offset (8 bit): opcode
1272 * offset + 1 (8 bit): crtc index
1276 uint8_t or = ffs(bios
->display
.output
->or) - 1;
1277 uint8_t index
= bios
->data
[offset
+ 1];
1280 if (!iexec
->execute
)
1283 data
= bios_idxprt_rd(bios
, 0x3d4, index
);
1284 bios_idxprt_wr(bios
, 0x3d4, index
, data
| (1 << or));
1289 init_idx_addr_latched(struct nvbios
*bios
, uint16_t offset
,
1290 struct init_exec
*iexec
)
1293 * INIT_INDEX_ADDRESS_LATCHED opcode: 0x49 ('I')
1295 * offset (8 bit): opcode
1296 * offset + 1 (32 bit): control register
1297 * offset + 5 (32 bit): data register
1298 * offset + 9 (32 bit): mask
1299 * offset + 13 (32 bit): data
1300 * offset + 17 (8 bit): count
1301 * offset + 18 (8 bit): address 1
1302 * offset + 19 (8 bit): data 1
1305 * For each of "count" address and data pairs, write "data n" to
1306 * "data register", read the current value of "control register",
1307 * and write it back once ANDed with "mask", ORed with "data",
1308 * and ORed with "address n"
1311 uint32_t controlreg
= ROM32(bios
->data
[offset
+ 1]);
1312 uint32_t datareg
= ROM32(bios
->data
[offset
+ 5]);
1313 uint32_t mask
= ROM32(bios
->data
[offset
+ 9]);
1314 uint32_t data
= ROM32(bios
->data
[offset
+ 13]);
1315 uint8_t count
= bios
->data
[offset
+ 17];
1316 int len
= 18 + count
* 2;
1320 if (!iexec
->execute
)
1323 BIOSLOG(bios
, "0x%04X: ControlReg: 0x%08X, DataReg: 0x%08X, "
1324 "Mask: 0x%08X, Data: 0x%08X, Count: 0x%02X\n",
1325 offset
, controlreg
, datareg
, mask
, data
, count
);
1327 for (i
= 0; i
< count
; i
++) {
1328 uint8_t instaddress
= bios
->data
[offset
+ 18 + i
* 2];
1329 uint8_t instdata
= bios
->data
[offset
+ 19 + i
* 2];
1331 BIOSLOG(bios
, "0x%04X: Address: 0x%02X, Data: 0x%02X\n",
1332 offset
, instaddress
, instdata
);
1334 bios_wr32(bios
, datareg
, instdata
);
1335 value
= bios_rd32(bios
, controlreg
) & mask
;
1337 value
|= instaddress
;
1338 bios_wr32(bios
, controlreg
, value
);
1345 init_io_restrict_pll2(struct nvbios
*bios
, uint16_t offset
,
1346 struct init_exec
*iexec
)
1349 * INIT_IO_RESTRICT_PLL2 opcode: 0x4A ('J')
1351 * offset (8 bit): opcode
1352 * offset + 1 (16 bit): CRTC port
1353 * offset + 3 (8 bit): CRTC index
1354 * offset + 4 (8 bit): mask
1355 * offset + 5 (8 bit): shift
1356 * offset + 6 (8 bit): count
1357 * offset + 7 (32 bit): register
1358 * offset + 11 (32 bit): frequency 1
1361 * Starting at offset + 11 there are "count" 32 bit frequencies (kHz).
1362 * Set PLL register "register" to coefficients for frequency n,
1363 * selected by reading index "CRTC index" of "CRTC port" ANDed with
1364 * "mask" and shifted right by "shift".
1367 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
1368 uint8_t crtcindex
= bios
->data
[offset
+ 3];
1369 uint8_t mask
= bios
->data
[offset
+ 4];
1370 uint8_t shift
= bios
->data
[offset
+ 5];
1371 uint8_t count
= bios
->data
[offset
+ 6];
1372 uint32_t reg
= ROM32(bios
->data
[offset
+ 7]);
1373 int len
= 11 + count
* 4;
1377 if (!iexec
->execute
)
1380 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
1381 "Shift: 0x%02X, Count: 0x%02X, Reg: 0x%08X\n",
1382 offset
, crtcport
, crtcindex
, mask
, shift
, count
, reg
);
1387 config
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) >> shift
;
1388 if (config
> count
) {
1390 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
1391 offset
, config
, count
);
1395 freq
= ROM32(bios
->data
[offset
+ 11 + config
* 4]);
1397 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Config: 0x%02X, Freq: %dkHz\n",
1398 offset
, reg
, config
, freq
);
1400 setPLL(bios
, reg
, freq
);
1406 init_pll2(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1409 * INIT_PLL2 opcode: 0x4B ('K')
1411 * offset (8 bit): opcode
1412 * offset + 1 (32 bit): register
1413 * offset + 5 (32 bit): freq
1415 * Set PLL register "register" to coefficients for frequency "freq"
1418 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
1419 uint32_t freq
= ROM32(bios
->data
[offset
+ 5]);
1421 if (!iexec
->execute
)
1424 BIOSLOG(bios
, "0x%04X: Reg: 0x%04X, Freq: %dkHz\n",
1427 setPLL(bios
, reg
, freq
);
1432 init_i2c_byte(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1435 * INIT_I2C_BYTE opcode: 0x4C ('L')
1437 * offset (8 bit): opcode
1438 * offset + 1 (8 bit): DCB I2C table entry index
1439 * offset + 2 (8 bit): I2C slave address
1440 * offset + 3 (8 bit): count
1441 * offset + 4 (8 bit): I2C register 1
1442 * offset + 5 (8 bit): mask 1
1443 * offset + 6 (8 bit): data 1
1446 * For each of "count" registers given by "I2C register n" on the device
1447 * addressed by "I2C slave address" on the I2C bus given by
1448 * "DCB I2C table entry index", read the register, AND the result with
1449 * "mask n" and OR it with "data n" before writing it back to the device
1452 struct drm_device
*dev
= bios
->dev
;
1453 uint8_t i2c_index
= bios
->data
[offset
+ 1];
1454 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
1455 uint8_t count
= bios
->data
[offset
+ 3];
1456 struct nouveau_i2c_chan
*chan
;
1457 int len
= 4 + count
* 3;
1460 if (!iexec
->execute
)
1463 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1465 offset
, i2c_index
, i2c_address
, count
);
1467 chan
= init_i2c_device_find(dev
, i2c_index
);
1469 NV_ERROR(dev
, "0x%04X: i2c bus not found\n", offset
);
1473 for (i
= 0; i
< count
; i
++) {
1474 uint8_t reg
= bios
->data
[offset
+ 4 + i
* 3];
1475 uint8_t mask
= bios
->data
[offset
+ 5 + i
* 3];
1476 uint8_t data
= bios
->data
[offset
+ 6 + i
* 3];
1477 union i2c_smbus_data val
;
1479 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
1480 I2C_SMBUS_READ
, reg
,
1481 I2C_SMBUS_BYTE_DATA
, &val
);
1483 NV_ERROR(dev
, "0x%04X: i2c rd fail: %d\n", offset
, ret
);
1487 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Value: 0x%02X, "
1488 "Mask: 0x%02X, Data: 0x%02X\n",
1489 offset
, reg
, val
.byte
, mask
, data
);
1496 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
1497 I2C_SMBUS_WRITE
, reg
,
1498 I2C_SMBUS_BYTE_DATA
, &val
);
1500 NV_ERROR(dev
, "0x%04X: i2c wr fail: %d\n", offset
, ret
);
1509 init_zm_i2c_byte(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1512 * INIT_ZM_I2C_BYTE opcode: 0x4D ('M')
1514 * offset (8 bit): opcode
1515 * offset + 1 (8 bit): DCB I2C table entry index
1516 * offset + 2 (8 bit): I2C slave address
1517 * offset + 3 (8 bit): count
1518 * offset + 4 (8 bit): I2C register 1
1519 * offset + 5 (8 bit): data 1
1522 * For each of "count" registers given by "I2C register n" on the device
1523 * addressed by "I2C slave address" on the I2C bus given by
1524 * "DCB I2C table entry index", set the register to "data n"
1527 struct drm_device
*dev
= bios
->dev
;
1528 uint8_t i2c_index
= bios
->data
[offset
+ 1];
1529 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
1530 uint8_t count
= bios
->data
[offset
+ 3];
1531 struct nouveau_i2c_chan
*chan
;
1532 int len
= 4 + count
* 2;
1535 if (!iexec
->execute
)
1538 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1540 offset
, i2c_index
, i2c_address
, count
);
1542 chan
= init_i2c_device_find(dev
, i2c_index
);
1544 NV_ERROR(dev
, "0x%04X: i2c bus not found\n", offset
);
1548 for (i
= 0; i
< count
; i
++) {
1549 uint8_t reg
= bios
->data
[offset
+ 4 + i
* 2];
1550 union i2c_smbus_data val
;
1552 val
.byte
= bios
->data
[offset
+ 5 + i
* 2];
1554 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Data: 0x%02X\n",
1555 offset
, reg
, val
.byte
);
1560 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
1561 I2C_SMBUS_WRITE
, reg
,
1562 I2C_SMBUS_BYTE_DATA
, &val
);
1564 NV_ERROR(dev
, "0x%04X: i2c wr fail: %d\n", offset
, ret
);
1573 init_zm_i2c(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1576 * INIT_ZM_I2C opcode: 0x4E ('N')
1578 * offset (8 bit): opcode
1579 * offset + 1 (8 bit): DCB I2C table entry index
1580 * offset + 2 (8 bit): I2C slave address
1581 * offset + 3 (8 bit): count
1582 * offset + 4 (8 bit): data 1
1585 * Send "count" bytes ("data n") to the device addressed by "I2C slave
1586 * address" on the I2C bus given by "DCB I2C table entry index"
1589 struct drm_device
*dev
= bios
->dev
;
1590 uint8_t i2c_index
= bios
->data
[offset
+ 1];
1591 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
1592 uint8_t count
= bios
->data
[offset
+ 3];
1593 int len
= 4 + count
;
1594 struct nouveau_i2c_chan
*chan
;
1599 if (!iexec
->execute
)
1602 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1604 offset
, i2c_index
, i2c_address
, count
);
1606 chan
= init_i2c_device_find(dev
, i2c_index
);
1608 NV_ERROR(dev
, "0x%04X: i2c bus not found\n", offset
);
1612 for (i
= 0; i
< count
; i
++) {
1613 data
[i
] = bios
->data
[offset
+ 4 + i
];
1615 BIOSLOG(bios
, "0x%04X: Data: 0x%02X\n", offset
, data
[i
]);
1618 if (bios
->execute
) {
1619 msg
.addr
= i2c_address
;
1623 ret
= i2c_transfer(&chan
->adapter
, &msg
, 1);
1625 NV_ERROR(dev
, "0x%04X: i2c wr fail: %d\n", offset
, ret
);
1634 init_tmds(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1637 * INIT_TMDS opcode: 0x4F ('O') (non-canon name)
1639 * offset (8 bit): opcode
1640 * offset + 1 (8 bit): magic lookup value
1641 * offset + 2 (8 bit): TMDS address
1642 * offset + 3 (8 bit): mask
1643 * offset + 4 (8 bit): data
1645 * Read the data reg for TMDS address "TMDS address", AND it with mask
1646 * and OR it with data, then write it back
1647 * "magic lookup value" determines which TMDS base address register is
1648 * used -- see get_tmds_index_reg()
1651 struct drm_device
*dev
= bios
->dev
;
1652 uint8_t mlv
= bios
->data
[offset
+ 1];
1653 uint32_t tmdsaddr
= bios
->data
[offset
+ 2];
1654 uint8_t mask
= bios
->data
[offset
+ 3];
1655 uint8_t data
= bios
->data
[offset
+ 4];
1656 uint32_t reg
, value
;
1658 if (!iexec
->execute
)
1661 BIOSLOG(bios
, "0x%04X: MagicLookupValue: 0x%02X, TMDSAddr: 0x%02X, "
1662 "Mask: 0x%02X, Data: 0x%02X\n",
1663 offset
, mlv
, tmdsaddr
, mask
, data
);
1665 reg
= get_tmds_index_reg(bios
->dev
, mlv
);
1667 NV_ERROR(dev
, "0x%04X: no tmds_index_reg\n", offset
);
1671 bios_wr32(bios
, reg
,
1672 tmdsaddr
| NV_PRAMDAC_FP_TMDS_CONTROL_WRITE_DISABLE
);
1673 value
= (bios_rd32(bios
, reg
+ 4) & mask
) | data
;
1674 bios_wr32(bios
, reg
+ 4, value
);
1675 bios_wr32(bios
, reg
, tmdsaddr
);
1681 init_zm_tmds_group(struct nvbios
*bios
, uint16_t offset
,
1682 struct init_exec
*iexec
)
1685 * INIT_ZM_TMDS_GROUP opcode: 0x50 ('P') (non-canon name)
1687 * offset (8 bit): opcode
1688 * offset + 1 (8 bit): magic lookup value
1689 * offset + 2 (8 bit): count
1690 * offset + 3 (8 bit): addr 1
1691 * offset + 4 (8 bit): data 1
1694 * For each of "count" TMDS address and data pairs write "data n" to
1695 * "addr n". "magic lookup value" determines which TMDS base address
1696 * register is used -- see get_tmds_index_reg()
1699 struct drm_device
*dev
= bios
->dev
;
1700 uint8_t mlv
= bios
->data
[offset
+ 1];
1701 uint8_t count
= bios
->data
[offset
+ 2];
1702 int len
= 3 + count
* 2;
1706 if (!iexec
->execute
)
1709 BIOSLOG(bios
, "0x%04X: MagicLookupValue: 0x%02X, Count: 0x%02X\n",
1710 offset
, mlv
, count
);
1712 reg
= get_tmds_index_reg(bios
->dev
, mlv
);
1714 NV_ERROR(dev
, "0x%04X: no tmds_index_reg\n", offset
);
1718 for (i
= 0; i
< count
; i
++) {
1719 uint8_t tmdsaddr
= bios
->data
[offset
+ 3 + i
* 2];
1720 uint8_t tmdsdata
= bios
->data
[offset
+ 4 + i
* 2];
1722 bios_wr32(bios
, reg
+ 4, tmdsdata
);
1723 bios_wr32(bios
, reg
, tmdsaddr
);
1730 init_cr_idx_adr_latch(struct nvbios
*bios
, uint16_t offset
,
1731 struct init_exec
*iexec
)
1734 * INIT_CR_INDEX_ADDRESS_LATCHED opcode: 0x51 ('Q')
1736 * offset (8 bit): opcode
1737 * offset + 1 (8 bit): CRTC index1
1738 * offset + 2 (8 bit): CRTC index2
1739 * offset + 3 (8 bit): baseaddr
1740 * offset + 4 (8 bit): count
1741 * offset + 5 (8 bit): data 1
1744 * For each of "count" address and data pairs, write "baseaddr + n" to
1745 * "CRTC index1" and "data n" to "CRTC index2"
1746 * Once complete, restore initial value read from "CRTC index1"
1748 uint8_t crtcindex1
= bios
->data
[offset
+ 1];
1749 uint8_t crtcindex2
= bios
->data
[offset
+ 2];
1750 uint8_t baseaddr
= bios
->data
[offset
+ 3];
1751 uint8_t count
= bios
->data
[offset
+ 4];
1752 int len
= 5 + count
;
1753 uint8_t oldaddr
, data
;
1756 if (!iexec
->execute
)
1759 BIOSLOG(bios
, "0x%04X: Index1: 0x%02X, Index2: 0x%02X, "
1760 "BaseAddr: 0x%02X, Count: 0x%02X\n",
1761 offset
, crtcindex1
, crtcindex2
, baseaddr
, count
);
1763 oldaddr
= bios_idxprt_rd(bios
, NV_CIO_CRX__COLOR
, crtcindex1
);
1765 for (i
= 0; i
< count
; i
++) {
1766 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex1
,
1768 data
= bios
->data
[offset
+ 5 + i
];
1769 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex2
, data
);
1772 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex1
, oldaddr
);
1778 init_cr(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1781 * INIT_CR opcode: 0x52 ('R')
1783 * offset (8 bit): opcode
1784 * offset + 1 (8 bit): CRTC index
1785 * offset + 2 (8 bit): mask
1786 * offset + 3 (8 bit): data
1788 * Assign the value of at "CRTC index" ANDed with mask and ORed with
1789 * data back to "CRTC index"
1792 uint8_t crtcindex
= bios
->data
[offset
+ 1];
1793 uint8_t mask
= bios
->data
[offset
+ 2];
1794 uint8_t data
= bios
->data
[offset
+ 3];
1797 if (!iexec
->execute
)
1800 BIOSLOG(bios
, "0x%04X: Index: 0x%02X, Mask: 0x%02X, Data: 0x%02X\n",
1801 offset
, crtcindex
, mask
, data
);
1803 value
= bios_idxprt_rd(bios
, NV_CIO_CRX__COLOR
, crtcindex
) & mask
;
1805 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex
, value
);
1811 init_zm_cr(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1814 * INIT_ZM_CR opcode: 0x53 ('S')
1816 * offset (8 bit): opcode
1817 * offset + 1 (8 bit): CRTC index
1818 * offset + 2 (8 bit): value
1820 * Assign "value" to CRTC register with index "CRTC index".
1823 uint8_t crtcindex
= ROM32(bios
->data
[offset
+ 1]);
1824 uint8_t data
= bios
->data
[offset
+ 2];
1826 if (!iexec
->execute
)
1829 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex
, data
);
1835 init_zm_cr_group(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1838 * INIT_ZM_CR_GROUP opcode: 0x54 ('T')
1840 * offset (8 bit): opcode
1841 * offset + 1 (8 bit): count
1842 * offset + 2 (8 bit): CRTC index 1
1843 * offset + 3 (8 bit): value 1
1846 * For "count", assign "value n" to CRTC register with index
1850 uint8_t count
= bios
->data
[offset
+ 1];
1851 int len
= 2 + count
* 2;
1854 if (!iexec
->execute
)
1857 for (i
= 0; i
< count
; i
++)
1858 init_zm_cr(bios
, offset
+ 2 + 2 * i
- 1, iexec
);
1864 init_condition_time(struct nvbios
*bios
, uint16_t offset
,
1865 struct init_exec
*iexec
)
1868 * INIT_CONDITION_TIME opcode: 0x56 ('V')
1870 * offset (8 bit): opcode
1871 * offset + 1 (8 bit): condition number
1872 * offset + 2 (8 bit): retries / 50
1874 * Check condition "condition number" in the condition table.
1875 * Bios code then sleeps for 2ms if the condition is not met, and
1876 * repeats up to "retries" times, but on one C51 this has proved
1877 * insufficient. In mmiotraces the driver sleeps for 20ms, so we do
1878 * this, and bail after "retries" times, or 2s, whichever is less.
1879 * If still not met after retries, clear execution flag for this table.
1882 uint8_t cond
= bios
->data
[offset
+ 1];
1883 uint16_t retries
= bios
->data
[offset
+ 2] * 50;
1886 if (!iexec
->execute
)
1892 BIOSLOG(bios
, "0x%04X: Condition: 0x%02X, Retries: 0x%02X\n",
1893 offset
, cond
, retries
);
1895 if (!bios
->execute
) /* avoid 2s delays when "faking" execution */
1898 for (cnt
= 0; cnt
< retries
; cnt
++) {
1899 if (bios_condition_met(bios
, offset
, cond
)) {
1900 BIOSLOG(bios
, "0x%04X: Condition met, continuing\n",
1904 BIOSLOG(bios
, "0x%04X: "
1905 "Condition not met, sleeping for 20ms\n",
1911 if (!bios_condition_met(bios
, offset
, cond
)) {
1913 "0x%04X: Condition still not met after %dms, "
1914 "skipping following opcodes\n", offset
, 20 * retries
);
1915 iexec
->execute
= false;
1922 init_ltime(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1925 * INIT_LTIME opcode: 0x57 ('V')
1927 * offset (8 bit): opcode
1928 * offset + 1 (16 bit): time
1930 * Sleep for "time" milliseconds.
1933 unsigned time
= ROM16(bios
->data
[offset
+ 1]);
1935 if (!iexec
->execute
)
1938 BIOSLOG(bios
, "0x%04X: Sleeping for 0x%04X milliseconds\n",
1947 init_zm_reg_sequence(struct nvbios
*bios
, uint16_t offset
,
1948 struct init_exec
*iexec
)
1951 * INIT_ZM_REG_SEQUENCE opcode: 0x58 ('X')
1953 * offset (8 bit): opcode
1954 * offset + 1 (32 bit): base register
1955 * offset + 5 (8 bit): count
1956 * offset + 6 (32 bit): value 1
1959 * Starting at offset + 6 there are "count" 32 bit values.
1960 * For "count" iterations set "base register" + 4 * current_iteration
1961 * to "value current_iteration"
1964 uint32_t basereg
= ROM32(bios
->data
[offset
+ 1]);
1965 uint32_t count
= bios
->data
[offset
+ 5];
1966 int len
= 6 + count
* 4;
1969 if (!iexec
->execute
)
1972 BIOSLOG(bios
, "0x%04X: BaseReg: 0x%08X, Count: 0x%02X\n",
1973 offset
, basereg
, count
);
1975 for (i
= 0; i
< count
; i
++) {
1976 uint32_t reg
= basereg
+ i
* 4;
1977 uint32_t data
= ROM32(bios
->data
[offset
+ 6 + i
* 4]);
1979 bios_wr32(bios
, reg
, data
);
1986 init_sub_direct(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1989 * INIT_SUB_DIRECT opcode: 0x5B ('[')
1991 * offset (8 bit): opcode
1992 * offset + 1 (16 bit): subroutine offset (in bios)
1994 * Calls a subroutine that will execute commands until INIT_DONE
1998 uint16_t sub_offset
= ROM16(bios
->data
[offset
+ 1]);
2000 if (!iexec
->execute
)
2003 BIOSLOG(bios
, "0x%04X: Executing subroutine at 0x%04X\n",
2004 offset
, sub_offset
);
2006 parse_init_table(bios
, sub_offset
, iexec
);
2008 BIOSLOG(bios
, "0x%04X: End of 0x%04X subroutine\n", offset
, sub_offset
);
2014 init_jump(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2017 * INIT_JUMP opcode: 0x5C ('\')
2019 * offset (8 bit): opcode
2020 * offset + 1 (16 bit): offset (in bios)
2022 * Continue execution of init table from 'offset'
2025 uint16_t jmp_offset
= ROM16(bios
->data
[offset
+ 1]);
2027 if (!iexec
->execute
)
2030 BIOSLOG(bios
, "0x%04X: Jump to 0x%04X\n", offset
, jmp_offset
);
2031 return jmp_offset
- offset
;
2035 init_i2c_if(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2038 * INIT_I2C_IF opcode: 0x5E ('^')
2040 * offset (8 bit): opcode
2041 * offset + 1 (8 bit): DCB I2C table entry index
2042 * offset + 2 (8 bit): I2C slave address
2043 * offset + 3 (8 bit): I2C register
2044 * offset + 4 (8 bit): mask
2045 * offset + 5 (8 bit): data
2047 * Read the register given by "I2C register" on the device addressed
2048 * by "I2C slave address" on the I2C bus given by "DCB I2C table
2049 * entry index". Compare the result AND "mask" to "data".
2050 * If they're not equal, skip subsequent opcodes until condition is
2051 * inverted (INIT_NOT), or we hit INIT_RESUME
2054 uint8_t i2c_index
= bios
->data
[offset
+ 1];
2055 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
2056 uint8_t reg
= bios
->data
[offset
+ 3];
2057 uint8_t mask
= bios
->data
[offset
+ 4];
2058 uint8_t data
= bios
->data
[offset
+ 5];
2059 struct nouveau_i2c_chan
*chan
;
2060 union i2c_smbus_data val
;
2063 /* no execute check by design */
2065 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X\n",
2066 offset
, i2c_index
, i2c_address
);
2068 chan
= init_i2c_device_find(bios
->dev
, i2c_index
);
2072 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
2073 I2C_SMBUS_READ
, reg
,
2074 I2C_SMBUS_BYTE_DATA
, &val
);
2076 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Value: [no device], "
2077 "Mask: 0x%02X, Data: 0x%02X\n",
2078 offset
, reg
, mask
, data
);
2083 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Value: 0x%02X, "
2084 "Mask: 0x%02X, Data: 0x%02X\n",
2085 offset
, reg
, val
.byte
, mask
, data
);
2087 iexec
->execute
= ((val
.byte
& mask
) == data
);
2093 init_copy_nv_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2096 * INIT_COPY_NV_REG opcode: 0x5F ('_')
2098 * offset (8 bit): opcode
2099 * offset + 1 (32 bit): src reg
2100 * offset + 5 (8 bit): shift
2101 * offset + 6 (32 bit): src mask
2102 * offset + 10 (32 bit): xor
2103 * offset + 14 (32 bit): dst reg
2104 * offset + 18 (32 bit): dst mask
2106 * Shift REGVAL("src reg") right by (signed) "shift", AND result with
2107 * "src mask", then XOR with "xor". Write this OR'd with
2108 * (REGVAL("dst reg") AND'd with "dst mask") to "dst reg"
2111 uint32_t srcreg
= *((uint32_t *)(&bios
->data
[offset
+ 1]));
2112 uint8_t shift
= bios
->data
[offset
+ 5];
2113 uint32_t srcmask
= *((uint32_t *)(&bios
->data
[offset
+ 6]));
2114 uint32_t xor = *((uint32_t *)(&bios
->data
[offset
+ 10]));
2115 uint32_t dstreg
= *((uint32_t *)(&bios
->data
[offset
+ 14]));
2116 uint32_t dstmask
= *((uint32_t *)(&bios
->data
[offset
+ 18]));
2117 uint32_t srcvalue
, dstvalue
;
2119 if (!iexec
->execute
)
2122 BIOSLOG(bios
, "0x%04X: SrcReg: 0x%08X, Shift: 0x%02X, SrcMask: 0x%08X, "
2123 "Xor: 0x%08X, DstReg: 0x%08X, DstMask: 0x%08X\n",
2124 offset
, srcreg
, shift
, srcmask
, xor, dstreg
, dstmask
);
2126 srcvalue
= bios_rd32(bios
, srcreg
);
2131 srcvalue
<<= (0x100 - shift
);
2133 srcvalue
= (srcvalue
& srcmask
) ^ xor;
2135 dstvalue
= bios_rd32(bios
, dstreg
) & dstmask
;
2137 bios_wr32(bios
, dstreg
, dstvalue
| srcvalue
);
2143 init_zm_index_io(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2146 * INIT_ZM_INDEX_IO opcode: 0x62 ('b')
2148 * offset (8 bit): opcode
2149 * offset + 1 (16 bit): CRTC port
2150 * offset + 3 (8 bit): CRTC index
2151 * offset + 4 (8 bit): data
2153 * Write "data" to index "CRTC index" of "CRTC port"
2155 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
2156 uint8_t crtcindex
= bios
->data
[offset
+ 3];
2157 uint8_t data
= bios
->data
[offset
+ 4];
2159 if (!iexec
->execute
)
2162 bios_idxprt_wr(bios
, crtcport
, crtcindex
, data
);
2168 bios_md32(struct nvbios
*bios
, uint32_t reg
,
2169 uint32_t mask
, uint32_t val
)
2171 bios_wr32(bios
, reg
, (bios_rd32(bios
, reg
) & ~mask
) | val
);
2175 peek_fb(struct drm_device
*dev
, struct io_mapping
*fb
,
2180 if (off
< pci_resource_len(dev
->pdev
, 1)) {
2181 uint8_t __iomem
*p
=
2182 io_mapping_map_atomic_wc(fb
, off
& PAGE_MASK
);
2184 val
= ioread32(p
+ (off
& ~PAGE_MASK
));
2186 io_mapping_unmap_atomic(p
);
2193 poke_fb(struct drm_device
*dev
, struct io_mapping
*fb
,
2194 uint32_t off
, uint32_t val
)
2196 if (off
< pci_resource_len(dev
->pdev
, 1)) {
2197 uint8_t __iomem
*p
=
2198 io_mapping_map_atomic_wc(fb
, off
& PAGE_MASK
);
2200 iowrite32(val
, p
+ (off
& ~PAGE_MASK
));
2203 io_mapping_unmap_atomic(p
);
2208 read_back_fb(struct drm_device
*dev
, struct io_mapping
*fb
,
2209 uint32_t off
, uint32_t val
)
2211 poke_fb(dev
, fb
, off
, val
);
2212 return val
== peek_fb(dev
, fb
, off
);
2216 nv04_init_compute_mem(struct nvbios
*bios
)
2218 struct drm_device
*dev
= bios
->dev
;
2219 uint32_t patt
= 0xdeadbeef;
2220 struct io_mapping
*fb
;
2223 /* Map the framebuffer aperture */
2224 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2225 pci_resource_len(dev
->pdev
, 1));
2229 /* Sequencer and refresh off */
2230 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) | 0x20);
2231 bios_md32(bios
, NV04_PFB_DEBUG_0
, 0, NV04_PFB_DEBUG_0_REFRESH_OFF
);
2233 bios_md32(bios
, NV04_PFB_BOOT_0
, ~0,
2234 NV04_PFB_BOOT_0_RAM_AMOUNT_16MB
|
2235 NV04_PFB_BOOT_0_RAM_WIDTH_128
|
2236 NV04_PFB_BOOT_0_RAM_TYPE_SGRAM_16MBIT
);
2238 for (i
= 0; i
< 4; i
++)
2239 poke_fb(dev
, fb
, 4 * i
, patt
);
2241 poke_fb(dev
, fb
, 0x400000, patt
+ 1);
2243 if (peek_fb(dev
, fb
, 0) == patt
+ 1) {
2244 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_TYPE
,
2245 NV04_PFB_BOOT_0_RAM_TYPE_SDRAM_16MBIT
);
2246 bios_md32(bios
, NV04_PFB_DEBUG_0
,
2247 NV04_PFB_DEBUG_0_REFRESH_OFF
, 0);
2249 for (i
= 0; i
< 4; i
++)
2250 poke_fb(dev
, fb
, 4 * i
, patt
);
2252 if ((peek_fb(dev
, fb
, 0xc) & 0xffff) != (patt
& 0xffff))
2253 bios_md32(bios
, NV04_PFB_BOOT_0
,
2254 NV04_PFB_BOOT_0_RAM_WIDTH_128
|
2255 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2256 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2258 } else if ((peek_fb(dev
, fb
, 0xc) & 0xffff0000) !=
2259 (patt
& 0xffff0000)) {
2260 bios_md32(bios
, NV04_PFB_BOOT_0
,
2261 NV04_PFB_BOOT_0_RAM_WIDTH_128
|
2262 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2263 NV04_PFB_BOOT_0_RAM_AMOUNT_4MB
);
2265 } else if (peek_fb(dev
, fb
, 0) != patt
) {
2266 if (read_back_fb(dev
, fb
, 0x800000, patt
))
2267 bios_md32(bios
, NV04_PFB_BOOT_0
,
2268 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2269 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2271 bios_md32(bios
, NV04_PFB_BOOT_0
,
2272 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2273 NV04_PFB_BOOT_0_RAM_AMOUNT_4MB
);
2275 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_TYPE
,
2276 NV04_PFB_BOOT_0_RAM_TYPE_SGRAM_8MBIT
);
2278 } else if (!read_back_fb(dev
, fb
, 0x800000, patt
)) {
2279 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2280 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2284 /* Refresh on, sequencer on */
2285 bios_md32(bios
, NV04_PFB_DEBUG_0
, NV04_PFB_DEBUG_0_REFRESH_OFF
, 0);
2286 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) & ~0x20);
2288 io_mapping_free(fb
);
2292 static const uint8_t *
2293 nv05_memory_config(struct nvbios
*bios
)
2295 /* Defaults for BIOSes lacking a memory config table */
2296 static const uint8_t default_config_tab
[][2] = {
2306 int i
= (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) &
2307 NV_PEXTDEV_BOOT_0_RAMCFG
) >> 2;
2309 if (bios
->legacy
.mem_init_tbl_ptr
)
2310 return &bios
->data
[bios
->legacy
.mem_init_tbl_ptr
+ 2 * i
];
2312 return default_config_tab
[i
];
2316 nv05_init_compute_mem(struct nvbios
*bios
)
2318 struct drm_device
*dev
= bios
->dev
;
2319 const uint8_t *ramcfg
= nv05_memory_config(bios
);
2320 uint32_t patt
= 0xdeadbeef;
2321 struct io_mapping
*fb
;
2324 /* Map the framebuffer aperture */
2325 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2326 pci_resource_len(dev
->pdev
, 1));
2331 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) | 0x20);
2333 if (bios_rd32(bios
, NV04_PFB_BOOT_0
) & NV04_PFB_BOOT_0_UMA_ENABLE
)
2336 bios_md32(bios
, NV04_PFB_DEBUG_0
, NV04_PFB_DEBUG_0_REFRESH_OFF
, 0);
2338 /* If present load the hardcoded scrambling table */
2339 if (bios
->legacy
.mem_init_tbl_ptr
) {
2340 uint32_t *scramble_tab
= (uint32_t *)&bios
->data
[
2341 bios
->legacy
.mem_init_tbl_ptr
+ 0x10];
2343 for (i
= 0; i
< 8; i
++)
2344 bios_wr32(bios
, NV04_PFB_SCRAMBLE(i
),
2345 ROM32(scramble_tab
[i
]));
2348 /* Set memory type/width/length defaults depending on the straps */
2349 bios_md32(bios
, NV04_PFB_BOOT_0
, 0x3f, ramcfg
[0]);
2351 if (ramcfg
[1] & 0x80)
2352 bios_md32(bios
, NV04_PFB_CFG0
, 0, NV04_PFB_CFG0_SCRAMBLE
);
2354 bios_md32(bios
, NV04_PFB_CFG1
, 0x700001, (ramcfg
[1] & 1) << 20);
2355 bios_md32(bios
, NV04_PFB_CFG1
, 0, 1);
2357 /* Probe memory bus width */
2358 for (i
= 0; i
< 4; i
++)
2359 poke_fb(dev
, fb
, 4 * i
, patt
);
2361 if (peek_fb(dev
, fb
, 0xc) != patt
)
2362 bios_md32(bios
, NV04_PFB_BOOT_0
,
2363 NV04_PFB_BOOT_0_RAM_WIDTH_128
, 0);
2365 /* Probe memory length */
2366 v
= bios_rd32(bios
, NV04_PFB_BOOT_0
) & NV04_PFB_BOOT_0_RAM_AMOUNT
;
2368 if (v
== NV04_PFB_BOOT_0_RAM_AMOUNT_32MB
&&
2369 (!read_back_fb(dev
, fb
, 0x1000000, ++patt
) ||
2370 !read_back_fb(dev
, fb
, 0, ++patt
)))
2371 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2372 NV04_PFB_BOOT_0_RAM_AMOUNT_16MB
);
2374 if (v
== NV04_PFB_BOOT_0_RAM_AMOUNT_16MB
&&
2375 !read_back_fb(dev
, fb
, 0x800000, ++patt
))
2376 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2377 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2379 if (!read_back_fb(dev
, fb
, 0x400000, ++patt
))
2380 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2381 NV04_PFB_BOOT_0_RAM_AMOUNT_4MB
);
2385 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) & ~0x20);
2387 io_mapping_free(fb
);
2392 nv10_init_compute_mem(struct nvbios
*bios
)
2394 struct drm_device
*dev
= bios
->dev
;
2395 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2396 const int mem_width
[] = { 0x10, 0x00, 0x20 };
2397 const int mem_width_count
= (dev_priv
->chipset
>= 0x17 ? 3 : 2);
2398 uint32_t patt
= 0xdeadbeef;
2399 struct io_mapping
*fb
;
2402 /* Map the framebuffer aperture */
2403 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2404 pci_resource_len(dev
->pdev
, 1));
2408 bios_wr32(bios
, NV10_PFB_REFCTRL
, NV10_PFB_REFCTRL_VALID_1
);
2410 /* Probe memory bus width */
2411 for (i
= 0; i
< mem_width_count
; i
++) {
2412 bios_md32(bios
, NV04_PFB_CFG0
, 0x30, mem_width
[i
]);
2414 for (j
= 0; j
< 4; j
++) {
2415 for (k
= 0; k
< 4; k
++)
2416 poke_fb(dev
, fb
, 0x1c, 0);
2418 poke_fb(dev
, fb
, 0x1c, patt
);
2419 poke_fb(dev
, fb
, 0x3c, 0);
2421 if (peek_fb(dev
, fb
, 0x1c) == patt
)
2422 goto mem_width_found
;
2429 /* Probe amount of installed memory */
2430 for (i
= 0; i
< 4; i
++) {
2431 int off
= bios_rd32(bios
, NV04_PFB_FIFO_DATA
) - 0x100000;
2433 poke_fb(dev
, fb
, off
, patt
);
2434 poke_fb(dev
, fb
, 0, 0);
2436 peek_fb(dev
, fb
, 0);
2437 peek_fb(dev
, fb
, 0);
2438 peek_fb(dev
, fb
, 0);
2439 peek_fb(dev
, fb
, 0);
2441 if (peek_fb(dev
, fb
, off
) == patt
)
2445 /* IC missing - disable the upper half memory space. */
2446 bios_md32(bios
, NV04_PFB_CFG0
, 0x1000, 0);
2449 io_mapping_free(fb
);
2454 nv20_init_compute_mem(struct nvbios
*bios
)
2456 struct drm_device
*dev
= bios
->dev
;
2457 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2458 uint32_t mask
= (dev_priv
->chipset
>= 0x25 ? 0x300 : 0x900);
2459 uint32_t amount
, off
;
2460 struct io_mapping
*fb
;
2462 /* Map the framebuffer aperture */
2463 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2464 pci_resource_len(dev
->pdev
, 1));
2468 bios_wr32(bios
, NV10_PFB_REFCTRL
, NV10_PFB_REFCTRL_VALID_1
);
2470 /* Allow full addressing */
2471 bios_md32(bios
, NV04_PFB_CFG0
, 0, mask
);
2473 amount
= bios_rd32(bios
, NV04_PFB_FIFO_DATA
);
2474 for (off
= amount
; off
> 0x2000000; off
-= 0x2000000)
2475 poke_fb(dev
, fb
, off
- 4, off
);
2477 amount
= bios_rd32(bios
, NV04_PFB_FIFO_DATA
);
2478 if (amount
!= peek_fb(dev
, fb
, amount
- 4))
2479 /* IC missing - disable the upper half memory space. */
2480 bios_md32(bios
, NV04_PFB_CFG0
, mask
, 0);
2482 io_mapping_free(fb
);
2487 init_compute_mem(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2490 * INIT_COMPUTE_MEM opcode: 0x63 ('c')
2492 * offset (8 bit): opcode
2494 * This opcode is meant to set the PFB memory config registers
2495 * appropriately so that we can correctly calculate how much VRAM it
2496 * has (on nv10 and better chipsets the amount of installed VRAM is
2497 * subsequently reported in NV_PFB_CSTATUS (0x10020C)).
2499 * The implementation of this opcode in general consists of several
2502 * 1) Determination of memory type and density. Only necessary for
2503 * really old chipsets, the memory type reported by the strap bits
2504 * (0x101000) is assumed to be accurate on nv05 and newer.
2506 * 2) Determination of the memory bus width. Usually done by a cunning
2507 * combination of writes to offsets 0x1c and 0x3c in the fb, and
2508 * seeing whether the written values are read back correctly.
2510 * Only necessary on nv0x-nv1x and nv34, on the other cards we can
2513 * 3) Determination of how many of the card's RAM pads have ICs
2514 * attached, usually done by a cunning combination of writes to an
2515 * offset slightly less than the maximum memory reported by
2516 * NV_PFB_CSTATUS, then seeing if the test pattern can be read back.
2518 * This appears to be a NOP on IGPs and NV4x or newer chipsets, both io
2519 * logs of the VBIOS and kmmio traces of the binary driver POSTing the
2520 * card show nothing being done for this opcode. Why is it still listed
2524 /* no iexec->execute check by design */
2526 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2529 if (dev_priv
->chipset
>= 0x40 ||
2530 dev_priv
->chipset
== 0x1a ||
2531 dev_priv
->chipset
== 0x1f)
2533 else if (dev_priv
->chipset
>= 0x20 &&
2534 dev_priv
->chipset
!= 0x34)
2535 ret
= nv20_init_compute_mem(bios
);
2536 else if (dev_priv
->chipset
>= 0x10)
2537 ret
= nv10_init_compute_mem(bios
);
2538 else if (dev_priv
->chipset
>= 0x5)
2539 ret
= nv05_init_compute_mem(bios
);
2541 ret
= nv04_init_compute_mem(bios
);
2550 init_reset(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2553 * INIT_RESET opcode: 0x65 ('e')
2555 * offset (8 bit): opcode
2556 * offset + 1 (32 bit): register
2557 * offset + 5 (32 bit): value1
2558 * offset + 9 (32 bit): value2
2560 * Assign "value1" to "register", then assign "value2" to "register"
2563 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
2564 uint32_t value1
= ROM32(bios
->data
[offset
+ 5]);
2565 uint32_t value2
= ROM32(bios
->data
[offset
+ 9]);
2566 uint32_t pci_nv_19
, pci_nv_20
;
2568 /* no iexec->execute check by design */
2570 pci_nv_19
= bios_rd32(bios
, NV_PBUS_PCI_NV_19
);
2571 bios_wr32(bios
, NV_PBUS_PCI_NV_19
, pci_nv_19
& ~0xf00);
2573 bios_wr32(bios
, reg
, value1
);
2577 bios_wr32(bios
, reg
, value2
);
2578 bios_wr32(bios
, NV_PBUS_PCI_NV_19
, pci_nv_19
);
2580 pci_nv_20
= bios_rd32(bios
, NV_PBUS_PCI_NV_20
);
2581 pci_nv_20
&= ~NV_PBUS_PCI_NV_20_ROM_SHADOW_ENABLED
; /* 0xfffffffe */
2582 bios_wr32(bios
, NV_PBUS_PCI_NV_20
, pci_nv_20
);
2588 init_configure_mem(struct nvbios
*bios
, uint16_t offset
,
2589 struct init_exec
*iexec
)
2592 * INIT_CONFIGURE_MEM opcode: 0x66 ('f')
2594 * offset (8 bit): opcode
2596 * Equivalent to INIT_DONE on bios version 3 or greater.
2597 * For early bios versions, sets up the memory registers, using values
2598 * taken from the memory init table
2601 /* no iexec->execute check by design */
2603 uint16_t meminitoffs
= bios
->legacy
.mem_init_tbl_ptr
+ MEM_INIT_SIZE
* (bios_idxprt_rd(bios
, NV_CIO_CRX__COLOR
, NV_CIO_CRE_SCRATCH4__INDEX
) >> 4);
2604 uint16_t seqtbloffs
= bios
->legacy
.sdr_seq_tbl_ptr
, meminitdata
= meminitoffs
+ 6;
2607 if (bios
->major_version
> 2)
2610 bios_idxprt_wr(bios
, NV_VIO_SRX
, NV_VIO_SR_CLOCK_INDEX
, bios_idxprt_rd(
2611 bios
, NV_VIO_SRX
, NV_VIO_SR_CLOCK_INDEX
) | 0x20);
2613 if (bios
->data
[meminitoffs
] & 1)
2614 seqtbloffs
= bios
->legacy
.ddr_seq_tbl_ptr
;
2616 for (reg
= ROM32(bios
->data
[seqtbloffs
]);
2618 reg
= ROM32(bios
->data
[seqtbloffs
+= 4])) {
2622 data
= NV04_PFB_PRE_CMD_PRECHARGE
;
2625 data
= NV04_PFB_PAD_CKE_NORMAL
;
2628 data
= NV04_PFB_REF_CMD_REFRESH
;
2631 data
= ROM32(bios
->data
[meminitdata
]);
2633 if (data
== 0xffffffff)
2637 bios_wr32(bios
, reg
, data
);
2644 init_configure_clk(struct nvbios
*bios
, uint16_t offset
,
2645 struct init_exec
*iexec
)
2648 * INIT_CONFIGURE_CLK opcode: 0x67 ('g')
2650 * offset (8 bit): opcode
2652 * Equivalent to INIT_DONE on bios version 3 or greater.
2653 * For early bios versions, sets up the NVClk and MClk PLLs, using
2654 * values taken from the memory init table
2657 /* no iexec->execute check by design */
2659 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);
2662 if (bios
->major_version
> 2)
2665 clock
= ROM16(bios
->data
[meminitoffs
+ 4]) * 10;
2666 setPLL(bios
, NV_PRAMDAC_NVPLL_COEFF
, clock
);
2668 clock
= ROM16(bios
->data
[meminitoffs
+ 2]) * 10;
2669 if (bios
->data
[meminitoffs
] & 1) /* DDR */
2671 setPLL(bios
, NV_PRAMDAC_MPLL_COEFF
, clock
);
2677 init_configure_preinit(struct nvbios
*bios
, uint16_t offset
,
2678 struct init_exec
*iexec
)
2681 * INIT_CONFIGURE_PREINIT opcode: 0x68 ('h')
2683 * offset (8 bit): opcode
2685 * Equivalent to INIT_DONE on bios version 3 or greater.
2686 * For early bios versions, does early init, loading ram and crystal
2687 * configuration from straps into CR3C
2690 /* no iexec->execute check by design */
2692 uint32_t straps
= bios_rd32(bios
, NV_PEXTDEV_BOOT_0
);
2693 uint8_t cr3c
= ((straps
<< 2) & 0xf0) | (straps
& 0x40) >> 6;
2695 if (bios
->major_version
> 2)
2698 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
,
2699 NV_CIO_CRE_SCRATCH4__INDEX
, cr3c
);
2705 init_io(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2708 * INIT_IO opcode: 0x69 ('i')
2710 * offset (8 bit): opcode
2711 * offset + 1 (16 bit): CRTC port
2712 * offset + 3 (8 bit): mask
2713 * offset + 4 (8 bit): data
2715 * Assign ((IOVAL("crtc port") & "mask") | "data") to "crtc port"
2718 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2719 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
2720 uint8_t mask
= bios
->data
[offset
+ 3];
2721 uint8_t data
= bios
->data
[offset
+ 4];
2723 if (!iexec
->execute
)
2726 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Mask: 0x%02X, Data: 0x%02X\n",
2727 offset
, crtcport
, mask
, data
);
2730 * I have no idea what this does, but NVIDIA do this magic sequence
2731 * in the places where this INIT_IO happens..
2733 if (dev_priv
->card_type
>= NV_50
&& crtcport
== 0x3c3 && data
== 1) {
2736 bios_wr32(bios
, 0x614100, (bios_rd32(
2737 bios
, 0x614100) & 0x0fffffff) | 0x00800000);
2739 bios_wr32(bios
, 0x00e18c, bios_rd32(
2740 bios
, 0x00e18c) | 0x00020000);
2742 bios_wr32(bios
, 0x614900, (bios_rd32(
2743 bios
, 0x614900) & 0x0fffffff) | 0x00800000);
2745 bios_wr32(bios
, 0x000200, bios_rd32(
2746 bios
, 0x000200) & ~0x40000000);
2750 bios_wr32(bios
, 0x00e18c, bios_rd32(
2751 bios
, 0x00e18c) & ~0x00020000);
2753 bios_wr32(bios
, 0x000200, bios_rd32(
2754 bios
, 0x000200) | 0x40000000);
2756 bios_wr32(bios
, 0x614100, 0x00800018);
2757 bios_wr32(bios
, 0x614900, 0x00800018);
2761 bios_wr32(bios
, 0x614100, 0x10000018);
2762 bios_wr32(bios
, 0x614900, 0x10000018);
2764 for (i
= 0; i
< 3; i
++)
2765 bios_wr32(bios
, 0x614280 + (i
*0x800), bios_rd32(
2766 bios
, 0x614280 + (i
*0x800)) & 0xf0f0f0f0);
2768 for (i
= 0; i
< 2; i
++)
2769 bios_wr32(bios
, 0x614300 + (i
*0x800), bios_rd32(
2770 bios
, 0x614300 + (i
*0x800)) & 0xfffff0f0);
2772 for (i
= 0; i
< 3; i
++)
2773 bios_wr32(bios
, 0x614380 + (i
*0x800), bios_rd32(
2774 bios
, 0x614380 + (i
*0x800)) & 0xfffff0f0);
2776 for (i
= 0; i
< 2; i
++)
2777 bios_wr32(bios
, 0x614200 + (i
*0x800), bios_rd32(
2778 bios
, 0x614200 + (i
*0x800)) & 0xfffffff0);
2780 for (i
= 0; i
< 2; i
++)
2781 bios_wr32(bios
, 0x614108 + (i
*0x800), bios_rd32(
2782 bios
, 0x614108 + (i
*0x800)) & 0x0fffffff);
2786 bios_port_wr(bios
, crtcport
, (bios_port_rd(bios
, crtcport
) & mask
) |
2792 init_sub(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2795 * INIT_SUB opcode: 0x6B ('k')
2797 * offset (8 bit): opcode
2798 * offset + 1 (8 bit): script number
2800 * Execute script number "script number", as a subroutine
2803 uint8_t sub
= bios
->data
[offset
+ 1];
2805 if (!iexec
->execute
)
2808 BIOSLOG(bios
, "0x%04X: Calling script %d\n", offset
, sub
);
2810 parse_init_table(bios
,
2811 ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ sub
* 2]),
2814 BIOSLOG(bios
, "0x%04X: End of script %d\n", offset
, sub
);
2820 init_ram_condition(struct nvbios
*bios
, uint16_t offset
,
2821 struct init_exec
*iexec
)
2824 * INIT_RAM_CONDITION opcode: 0x6D ('m')
2826 * offset (8 bit): opcode
2827 * offset + 1 (8 bit): mask
2828 * offset + 2 (8 bit): cmpval
2830 * Test if (NV04_PFB_BOOT_0 & "mask") equals "cmpval".
2831 * If condition not met skip subsequent opcodes until condition is
2832 * inverted (INIT_NOT), or we hit INIT_RESUME
2835 uint8_t mask
= bios
->data
[offset
+ 1];
2836 uint8_t cmpval
= bios
->data
[offset
+ 2];
2839 if (!iexec
->execute
)
2842 data
= bios_rd32(bios
, NV04_PFB_BOOT_0
) & mask
;
2844 BIOSLOG(bios
, "0x%04X: Checking if 0x%08X equals 0x%08X\n",
2845 offset
, data
, cmpval
);
2848 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
2850 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
2851 iexec
->execute
= false;
2858 init_nv_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2861 * INIT_NV_REG opcode: 0x6E ('n')
2863 * offset (8 bit): opcode
2864 * offset + 1 (32 bit): register
2865 * offset + 5 (32 bit): mask
2866 * offset + 9 (32 bit): data
2868 * Assign ((REGVAL("register") & "mask") | "data") to "register"
2871 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
2872 uint32_t mask
= ROM32(bios
->data
[offset
+ 5]);
2873 uint32_t data
= ROM32(bios
->data
[offset
+ 9]);
2875 if (!iexec
->execute
)
2878 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Mask: 0x%08X, Data: 0x%08X\n",
2879 offset
, reg
, mask
, data
);
2881 bios_wr32(bios
, reg
, (bios_rd32(bios
, reg
) & mask
) | data
);
2887 init_macro(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2890 * INIT_MACRO opcode: 0x6F ('o')
2892 * offset (8 bit): opcode
2893 * offset + 1 (8 bit): macro number
2895 * Look up macro index "macro number" in the macro index table.
2896 * The macro index table entry has 1 byte for the index in the macro
2897 * table, and 1 byte for the number of times to repeat the macro.
2898 * The macro table entry has 4 bytes for the register address and
2899 * 4 bytes for the value to write to that register
2902 uint8_t macro_index_tbl_idx
= bios
->data
[offset
+ 1];
2903 uint16_t tmp
= bios
->macro_index_tbl_ptr
+ (macro_index_tbl_idx
* MACRO_INDEX_SIZE
);
2904 uint8_t macro_tbl_idx
= bios
->data
[tmp
];
2905 uint8_t count
= bios
->data
[tmp
+ 1];
2909 if (!iexec
->execute
)
2912 BIOSLOG(bios
, "0x%04X: Macro: 0x%02X, MacroTableIndex: 0x%02X, "
2914 offset
, macro_index_tbl_idx
, macro_tbl_idx
, count
);
2916 for (i
= 0; i
< count
; i
++) {
2917 uint16_t macroentryptr
= bios
->macro_tbl_ptr
+ (macro_tbl_idx
+ i
) * MACRO_SIZE
;
2919 reg
= ROM32(bios
->data
[macroentryptr
]);
2920 data
= ROM32(bios
->data
[macroentryptr
+ 4]);
2922 bios_wr32(bios
, reg
, data
);
2929 init_done(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2932 * INIT_DONE opcode: 0x71 ('q')
2934 * offset (8 bit): opcode
2936 * End the current script
2939 /* mild retval abuse to stop parsing this table */
2944 init_resume(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2947 * INIT_RESUME opcode: 0x72 ('r')
2949 * offset (8 bit): opcode
2951 * End the current execute / no-execute condition
2957 iexec
->execute
= true;
2958 BIOSLOG(bios
, "0x%04X: ---- Executing following commands ----\n", offset
);
2964 init_time(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2967 * INIT_TIME opcode: 0x74 ('t')
2969 * offset (8 bit): opcode
2970 * offset + 1 (16 bit): time
2972 * Sleep for "time" microseconds.
2975 unsigned time
= ROM16(bios
->data
[offset
+ 1]);
2977 if (!iexec
->execute
)
2980 BIOSLOG(bios
, "0x%04X: Sleeping for 0x%04X microseconds\n",
2986 mdelay((time
+ 900) / 1000);
2992 init_condition(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2995 * INIT_CONDITION opcode: 0x75 ('u')
2997 * offset (8 bit): opcode
2998 * offset + 1 (8 bit): condition number
3000 * Check condition "condition number" in the condition table.
3001 * If condition not met skip subsequent opcodes until condition is
3002 * inverted (INIT_NOT), or we hit INIT_RESUME
3005 uint8_t cond
= bios
->data
[offset
+ 1];
3007 if (!iexec
->execute
)
3010 BIOSLOG(bios
, "0x%04X: Condition: 0x%02X\n", offset
, cond
);
3012 if (bios_condition_met(bios
, offset
, cond
))
3013 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
3015 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
3016 iexec
->execute
= false;
3023 init_io_condition(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3026 * INIT_IO_CONDITION opcode: 0x76
3028 * offset (8 bit): opcode
3029 * offset + 1 (8 bit): condition number
3031 * Check condition "condition number" in the io condition table.
3032 * If condition not met skip subsequent opcodes until condition is
3033 * inverted (INIT_NOT), or we hit INIT_RESUME
3036 uint8_t cond
= bios
->data
[offset
+ 1];
3038 if (!iexec
->execute
)
3041 BIOSLOG(bios
, "0x%04X: IO condition: 0x%02X\n", offset
, cond
);
3043 if (io_condition_met(bios
, offset
, cond
))
3044 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
3046 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
3047 iexec
->execute
= false;
3054 init_index_io(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3057 * INIT_INDEX_IO opcode: 0x78 ('x')
3059 * offset (8 bit): opcode
3060 * offset + 1 (16 bit): CRTC port
3061 * offset + 3 (8 bit): CRTC index
3062 * offset + 4 (8 bit): mask
3063 * offset + 5 (8 bit): data
3065 * Read value at index "CRTC index" on "CRTC port", AND with "mask",
3066 * OR with "data", write-back
3069 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
3070 uint8_t crtcindex
= bios
->data
[offset
+ 3];
3071 uint8_t mask
= bios
->data
[offset
+ 4];
3072 uint8_t data
= bios
->data
[offset
+ 5];
3075 if (!iexec
->execute
)
3078 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
3080 offset
, crtcport
, crtcindex
, mask
, data
);
3082 value
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) | data
;
3083 bios_idxprt_wr(bios
, crtcport
, crtcindex
, value
);
3089 init_pll(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3092 * INIT_PLL opcode: 0x79 ('y')
3094 * offset (8 bit): opcode
3095 * offset + 1 (32 bit): register
3096 * offset + 5 (16 bit): freq
3098 * Set PLL register "register" to coefficients for frequency (10kHz)
3102 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3103 uint16_t freq
= ROM16(bios
->data
[offset
+ 5]);
3105 if (!iexec
->execute
)
3108 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Freq: %d0kHz\n", offset
, reg
, freq
);
3110 setPLL(bios
, reg
, freq
* 10);
3116 init_zm_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3119 * INIT_ZM_REG opcode: 0x7A ('z')
3121 * offset (8 bit): opcode
3122 * offset + 1 (32 bit): register
3123 * offset + 5 (32 bit): value
3125 * Assign "value" to "register"
3128 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3129 uint32_t value
= ROM32(bios
->data
[offset
+ 5]);
3131 if (!iexec
->execute
)
3134 if (reg
== 0x000200)
3137 bios_wr32(bios
, reg
, value
);
3143 init_ram_restrict_pll(struct nvbios
*bios
, uint16_t offset
,
3144 struct init_exec
*iexec
)
3147 * INIT_RAM_RESTRICT_PLL opcode: 0x87 ('')
3149 * offset (8 bit): opcode
3150 * offset + 1 (8 bit): PLL type
3151 * offset + 2 (32 bit): frequency 0
3153 * Uses the RAMCFG strap of PEXTDEV_BOOT as an index into the table at
3154 * ram_restrict_table_ptr. The value read from there is used to select
3155 * a frequency from the table starting at 'frequency 0' to be
3156 * programmed into the PLL corresponding to 'type'.
3158 * The PLL limits table on cards using this opcode has a mapping of
3159 * 'type' to the relevant registers.
3162 struct drm_device
*dev
= bios
->dev
;
3163 uint32_t strap
= (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) & 0x0000003c) >> 2;
3164 uint8_t index
= bios
->data
[bios
->ram_restrict_tbl_ptr
+ strap
];
3165 uint8_t type
= bios
->data
[offset
+ 1];
3166 uint32_t freq
= ROM32(bios
->data
[offset
+ 2 + (index
* 4)]);
3167 uint8_t *pll_limits
= &bios
->data
[bios
->pll_limit_tbl_ptr
], *entry
;
3168 int len
= 2 + bios
->ram_restrict_group_count
* 4;
3171 if (!iexec
->execute
)
3174 if (!bios
->pll_limit_tbl_ptr
|| (pll_limits
[0] & 0xf0) != 0x30) {
3175 NV_ERROR(dev
, "PLL limits table not version 3.x\n");
3176 return len
; /* deliberate, allow default clocks to remain */
3179 entry
= pll_limits
+ pll_limits
[1];
3180 for (i
= 0; i
< pll_limits
[3]; i
++, entry
+= pll_limits
[2]) {
3181 if (entry
[0] == type
) {
3182 uint32_t reg
= ROM32(entry
[3]);
3184 BIOSLOG(bios
, "0x%04X: "
3185 "Type %02x Reg 0x%08x Freq %dKHz\n",
3186 offset
, type
, reg
, freq
);
3188 setPLL(bios
, reg
, freq
);
3193 NV_ERROR(dev
, "PLL type 0x%02x not found in PLL limits table", type
);
3198 init_8c(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3201 * INIT_8C opcode: 0x8C ('')
3211 init_8d(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3214 * INIT_8D opcode: 0x8D ('')
3224 init_gpio(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3227 * INIT_GPIO opcode: 0x8E ('')
3229 * offset (8 bit): opcode
3231 * Loop over all entries in the DCB GPIO table, and initialise
3232 * each GPIO according to various values listed in each entry
3235 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
3236 struct nouveau_gpio_engine
*pgpio
= &dev_priv
->engine
.gpio
;
3237 const uint32_t nv50_gpio_ctl
[2] = { 0xe100, 0xe28c };
3240 if (dev_priv
->card_type
< NV_50
) {
3241 NV_ERROR(bios
->dev
, "INIT_GPIO on unsupported chipset\n");
3245 if (!iexec
->execute
)
3248 for (i
= 0; i
< bios
->dcb
.gpio
.entries
; i
++) {
3249 struct dcb_gpio_entry
*gpio
= &bios
->dcb
.gpio
.entry
[i
];
3252 BIOSLOG(bios
, "0x%04X: Entry: 0x%08X\n", offset
, gpio
->entry
);
3254 BIOSLOG(bios
, "0x%04X: set gpio 0x%02x, state %d\n",
3255 offset
, gpio
->tag
, gpio
->state_default
);
3257 pgpio
->set(bios
->dev
, gpio
->tag
, gpio
->state_default
);
3259 /* The NVIDIA binary driver doesn't appear to actually do
3260 * any of this, my VBIOS does however.
3262 /* Not a clue, needs de-magicing */
3263 r
= nv50_gpio_ctl
[gpio
->line
>> 4];
3264 s
= (gpio
->line
& 0x0f);
3265 v
= bios_rd32(bios
, r
) & ~(0x00010001 << s
);
3266 switch ((gpio
->entry
& 0x06000000) >> 25) {
3268 v
|= (0x00000001 << s
);
3271 v
|= (0x00010000 << s
);
3276 bios_wr32(bios
, r
, v
);
3283 init_ram_restrict_zm_reg_group(struct nvbios
*bios
, uint16_t offset
,
3284 struct init_exec
*iexec
)
3287 * INIT_RAM_RESTRICT_ZM_REG_GROUP opcode: 0x8F ('')
3289 * offset (8 bit): opcode
3290 * offset + 1 (32 bit): reg
3291 * offset + 5 (8 bit): regincrement
3292 * offset + 6 (8 bit): count
3293 * offset + 7 (32 bit): value 1,1
3296 * Use the RAMCFG strap of PEXTDEV_BOOT as an index into the table at
3297 * ram_restrict_table_ptr. The value read from here is 'n', and
3298 * "value 1,n" gets written to "reg". This repeats "count" times and on
3299 * each iteration 'm', "reg" increases by "regincrement" and
3300 * "value m,n" is used. The extent of n is limited by a number read
3301 * from the 'M' BIT table, herein called "blocklen"
3304 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3305 uint8_t regincrement
= bios
->data
[offset
+ 5];
3306 uint8_t count
= bios
->data
[offset
+ 6];
3307 uint32_t strap_ramcfg
, data
;
3308 /* previously set by 'M' BIT table */
3309 uint16_t blocklen
= bios
->ram_restrict_group_count
* 4;
3310 int len
= 7 + count
* blocklen
;
3314 /* critical! to know the length of the opcode */;
3317 "0x%04X: Zero block length - has the M table "
3318 "been parsed?\n", offset
);
3322 if (!iexec
->execute
)
3325 strap_ramcfg
= (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) >> 2) & 0xf;
3326 index
= bios
->data
[bios
->ram_restrict_tbl_ptr
+ strap_ramcfg
];
3328 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, RegIncrement: 0x%02X, "
3329 "Count: 0x%02X, StrapRamCfg: 0x%02X, Index: 0x%02X\n",
3330 offset
, reg
, regincrement
, count
, strap_ramcfg
, index
);
3332 for (i
= 0; i
< count
; i
++) {
3333 data
= ROM32(bios
->data
[offset
+ 7 + index
* 4 + blocklen
* i
]);
3335 bios_wr32(bios
, reg
, data
);
3337 reg
+= regincrement
;
3344 init_copy_zm_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3347 * INIT_COPY_ZM_REG opcode: 0x90 ('')
3349 * offset (8 bit): opcode
3350 * offset + 1 (32 bit): src reg
3351 * offset + 5 (32 bit): dst reg
3353 * Put contents of "src reg" into "dst reg"
3356 uint32_t srcreg
= ROM32(bios
->data
[offset
+ 1]);
3357 uint32_t dstreg
= ROM32(bios
->data
[offset
+ 5]);
3359 if (!iexec
->execute
)
3362 bios_wr32(bios
, dstreg
, bios_rd32(bios
, srcreg
));
3368 init_zm_reg_group_addr_latched(struct nvbios
*bios
, uint16_t offset
,
3369 struct init_exec
*iexec
)
3372 * INIT_ZM_REG_GROUP_ADDRESS_LATCHED opcode: 0x91 ('')
3374 * offset (8 bit): opcode
3375 * offset + 1 (32 bit): dst reg
3376 * offset + 5 (8 bit): count
3377 * offset + 6 (32 bit): data 1
3380 * For each of "count" values write "data n" to "dst reg"
3383 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3384 uint8_t count
= bios
->data
[offset
+ 5];
3385 int len
= 6 + count
* 4;
3388 if (!iexec
->execute
)
3391 for (i
= 0; i
< count
; i
++) {
3392 uint32_t data
= ROM32(bios
->data
[offset
+ 6 + 4 * i
]);
3393 bios_wr32(bios
, reg
, data
);
3400 init_reserved(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3403 * INIT_RESERVED opcode: 0x92 ('')
3405 * offset (8 bit): opcode
3407 * Seemingly does nothing
3414 init_96(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3417 * INIT_96 opcode: 0x96 ('')
3419 * offset (8 bit): opcode
3420 * offset + 1 (32 bit): sreg
3421 * offset + 5 (8 bit): sshift
3422 * offset + 6 (8 bit): smask
3423 * offset + 7 (8 bit): index
3424 * offset + 8 (32 bit): reg
3425 * offset + 12 (32 bit): mask
3426 * offset + 16 (8 bit): shift
3430 uint16_t xlatptr
= bios
->init96_tbl_ptr
+ (bios
->data
[offset
+ 7] * 2);
3431 uint32_t reg
= ROM32(bios
->data
[offset
+ 8]);
3432 uint32_t mask
= ROM32(bios
->data
[offset
+ 12]);
3435 val
= bios_rd32(bios
, ROM32(bios
->data
[offset
+ 1]));
3436 if (bios
->data
[offset
+ 5] < 0x80)
3437 val
>>= bios
->data
[offset
+ 5];
3439 val
<<= (0x100 - bios
->data
[offset
+ 5]);
3440 val
&= bios
->data
[offset
+ 6];
3442 val
= bios
->data
[ROM16(bios
->data
[xlatptr
]) + val
];
3443 val
<<= bios
->data
[offset
+ 16];
3445 if (!iexec
->execute
)
3448 bios_wr32(bios
, reg
, (bios_rd32(bios
, reg
) & mask
) | val
);
3453 init_97(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3456 * INIT_97 opcode: 0x97 ('')
3458 * offset (8 bit): opcode
3459 * offset + 1 (32 bit): register
3460 * offset + 5 (32 bit): mask
3461 * offset + 9 (32 bit): value
3463 * Adds "value" to "register" preserving the fields specified
3467 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3468 uint32_t mask
= ROM32(bios
->data
[offset
+ 5]);
3469 uint32_t add
= ROM32(bios
->data
[offset
+ 9]);
3472 val
= bios_rd32(bios
, reg
);
3473 val
= (val
& mask
) | ((val
+ add
) & ~mask
);
3475 if (!iexec
->execute
)
3478 bios_wr32(bios
, reg
, val
);
3483 init_auxch(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3486 * INIT_AUXCH opcode: 0x98 ('')
3488 * offset (8 bit): opcode
3489 * offset + 1 (32 bit): address
3490 * offset + 5 (8 bit): count
3491 * offset + 6 (8 bit): mask 0
3492 * offset + 7 (8 bit): data 0
3497 struct drm_device
*dev
= bios
->dev
;
3498 struct nouveau_i2c_chan
*auxch
;
3499 uint32_t addr
= ROM32(bios
->data
[offset
+ 1]);
3500 uint8_t count
= bios
->data
[offset
+ 5];
3501 int len
= 6 + count
* 2;
3504 if (!bios
->display
.output
) {
3505 NV_ERROR(dev
, "INIT_AUXCH: no active output\n");
3509 auxch
= init_i2c_device_find(dev
, bios
->display
.output
->i2c_index
);
3511 NV_ERROR(dev
, "INIT_AUXCH: couldn't get auxch %d\n",
3512 bios
->display
.output
->i2c_index
);
3516 if (!iexec
->execute
)
3520 for (i
= 0; i
< count
; i
++, offset
+= 2) {
3523 ret
= nouveau_dp_auxch(auxch
, 9, addr
, &data
, 1);
3525 NV_ERROR(dev
, "INIT_AUXCH: rd auxch fail %d\n", ret
);
3529 data
&= bios
->data
[offset
+ 0];
3530 data
|= bios
->data
[offset
+ 1];
3532 ret
= nouveau_dp_auxch(auxch
, 8, addr
, &data
, 1);
3534 NV_ERROR(dev
, "INIT_AUXCH: wr auxch fail %d\n", ret
);
3543 init_zm_auxch(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3546 * INIT_ZM_AUXCH opcode: 0x99 ('')
3548 * offset (8 bit): opcode
3549 * offset + 1 (32 bit): address
3550 * offset + 5 (8 bit): count
3551 * offset + 6 (8 bit): data 0
3556 struct drm_device
*dev
= bios
->dev
;
3557 struct nouveau_i2c_chan
*auxch
;
3558 uint32_t addr
= ROM32(bios
->data
[offset
+ 1]);
3559 uint8_t count
= bios
->data
[offset
+ 5];
3560 int len
= 6 + count
;
3563 if (!bios
->display
.output
) {
3564 NV_ERROR(dev
, "INIT_ZM_AUXCH: no active output\n");
3568 auxch
= init_i2c_device_find(dev
, bios
->display
.output
->i2c_index
);
3570 NV_ERROR(dev
, "INIT_ZM_AUXCH: couldn't get auxch %d\n",
3571 bios
->display
.output
->i2c_index
);
3575 if (!iexec
->execute
)
3579 for (i
= 0; i
< count
; i
++, offset
++) {
3580 ret
= nouveau_dp_auxch(auxch
, 8, addr
, &bios
->data
[offset
], 1);
3582 NV_ERROR(dev
, "INIT_ZM_AUXCH: wr auxch fail %d\n", ret
);
3591 init_i2c_long_if(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3594 * INIT_I2C_LONG_IF opcode: 0x9A ('')
3596 * offset (8 bit): opcode
3597 * offset + 1 (8 bit): DCB I2C table entry index
3598 * offset + 2 (8 bit): I2C slave address
3599 * offset + 3 (16 bit): I2C register
3600 * offset + 5 (8 bit): mask
3601 * offset + 6 (8 bit): data
3603 * Read the register given by "I2C register" on the device addressed
3604 * by "I2C slave address" on the I2C bus given by "DCB I2C table
3605 * entry index". Compare the result AND "mask" to "data".
3606 * If they're not equal, skip subsequent opcodes until condition is
3607 * inverted (INIT_NOT), or we hit INIT_RESUME
3610 uint8_t i2c_index
= bios
->data
[offset
+ 1];
3611 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
3612 uint8_t reglo
= bios
->data
[offset
+ 3];
3613 uint8_t reghi
= bios
->data
[offset
+ 4];
3614 uint8_t mask
= bios
->data
[offset
+ 5];
3615 uint8_t data
= bios
->data
[offset
+ 6];
3616 struct nouveau_i2c_chan
*chan
;
3617 uint8_t buf0
[2] = { reghi
, reglo
};
3619 struct i2c_msg msg
[2] = {
3620 { i2c_address
, 0, 1, buf0
},
3621 { i2c_address
, I2C_M_RD
, 1, buf1
},
3625 /* no execute check by design */
3627 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X\n",
3628 offset
, i2c_index
, i2c_address
);
3630 chan
= init_i2c_device_find(bios
->dev
, i2c_index
);
3635 ret
= i2c_transfer(&chan
->adapter
, msg
, 2);
3637 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X:0x%02X, Value: [no device], "
3638 "Mask: 0x%02X, Data: 0x%02X\n",
3639 offset
, reghi
, reglo
, mask
, data
);
3644 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X:0x%02X, Value: 0x%02X, "
3645 "Mask: 0x%02X, Data: 0x%02X\n",
3646 offset
, reghi
, reglo
, buf1
[0], mask
, data
);
3648 iexec
->execute
= ((buf1
[0] & mask
) == data
);
3653 static struct init_tbl_entry itbl_entry
[] = {
3654 /* command name , id , length , offset , mult , command handler */
3655 /* INIT_PROG (0x31, 15, 10, 4) removed due to no example of use */
3656 { "INIT_IO_RESTRICT_PROG" , 0x32, init_io_restrict_prog
},
3657 { "INIT_REPEAT" , 0x33, init_repeat
},
3658 { "INIT_IO_RESTRICT_PLL" , 0x34, init_io_restrict_pll
},
3659 { "INIT_END_REPEAT" , 0x36, init_end_repeat
},
3660 { "INIT_COPY" , 0x37, init_copy
},
3661 { "INIT_NOT" , 0x38, init_not
},
3662 { "INIT_IO_FLAG_CONDITION" , 0x39, init_io_flag_condition
},
3663 { "INIT_DP_CONDITION" , 0x3A, init_dp_condition
},
3664 { "INIT_OP_3B" , 0x3B, init_op_3b
},
3665 { "INIT_OP_3C" , 0x3C, init_op_3c
},
3666 { "INIT_INDEX_ADDRESS_LATCHED" , 0x49, init_idx_addr_latched
},
3667 { "INIT_IO_RESTRICT_PLL2" , 0x4A, init_io_restrict_pll2
},
3668 { "INIT_PLL2" , 0x4B, init_pll2
},
3669 { "INIT_I2C_BYTE" , 0x4C, init_i2c_byte
},
3670 { "INIT_ZM_I2C_BYTE" , 0x4D, init_zm_i2c_byte
},
3671 { "INIT_ZM_I2C" , 0x4E, init_zm_i2c
},
3672 { "INIT_TMDS" , 0x4F, init_tmds
},
3673 { "INIT_ZM_TMDS_GROUP" , 0x50, init_zm_tmds_group
},
3674 { "INIT_CR_INDEX_ADDRESS_LATCHED" , 0x51, init_cr_idx_adr_latch
},
3675 { "INIT_CR" , 0x52, init_cr
},
3676 { "INIT_ZM_CR" , 0x53, init_zm_cr
},
3677 { "INIT_ZM_CR_GROUP" , 0x54, init_zm_cr_group
},
3678 { "INIT_CONDITION_TIME" , 0x56, init_condition_time
},
3679 { "INIT_LTIME" , 0x57, init_ltime
},
3680 { "INIT_ZM_REG_SEQUENCE" , 0x58, init_zm_reg_sequence
},
3681 /* INIT_INDIRECT_REG (0x5A, 7, 0, 0) removed due to no example of use */
3682 { "INIT_SUB_DIRECT" , 0x5B, init_sub_direct
},
3683 { "INIT_JUMP" , 0x5C, init_jump
},
3684 { "INIT_I2C_IF" , 0x5E, init_i2c_if
},
3685 { "INIT_COPY_NV_REG" , 0x5F, init_copy_nv_reg
},
3686 { "INIT_ZM_INDEX_IO" , 0x62, init_zm_index_io
},
3687 { "INIT_COMPUTE_MEM" , 0x63, init_compute_mem
},
3688 { "INIT_RESET" , 0x65, init_reset
},
3689 { "INIT_CONFIGURE_MEM" , 0x66, init_configure_mem
},
3690 { "INIT_CONFIGURE_CLK" , 0x67, init_configure_clk
},
3691 { "INIT_CONFIGURE_PREINIT" , 0x68, init_configure_preinit
},
3692 { "INIT_IO" , 0x69, init_io
},
3693 { "INIT_SUB" , 0x6B, init_sub
},
3694 { "INIT_RAM_CONDITION" , 0x6D, init_ram_condition
},
3695 { "INIT_NV_REG" , 0x6E, init_nv_reg
},
3696 { "INIT_MACRO" , 0x6F, init_macro
},
3697 { "INIT_DONE" , 0x71, init_done
},
3698 { "INIT_RESUME" , 0x72, init_resume
},
3699 /* INIT_RAM_CONDITION2 (0x73, 9, 0, 0) removed due to no example of use */
3700 { "INIT_TIME" , 0x74, init_time
},
3701 { "INIT_CONDITION" , 0x75, init_condition
},
3702 { "INIT_IO_CONDITION" , 0x76, init_io_condition
},
3703 { "INIT_INDEX_IO" , 0x78, init_index_io
},
3704 { "INIT_PLL" , 0x79, init_pll
},
3705 { "INIT_ZM_REG" , 0x7A, init_zm_reg
},
3706 { "INIT_RAM_RESTRICT_PLL" , 0x87, init_ram_restrict_pll
},
3707 { "INIT_8C" , 0x8C, init_8c
},
3708 { "INIT_8D" , 0x8D, init_8d
},
3709 { "INIT_GPIO" , 0x8E, init_gpio
},
3710 { "INIT_RAM_RESTRICT_ZM_REG_GROUP" , 0x8F, init_ram_restrict_zm_reg_group
},
3711 { "INIT_COPY_ZM_REG" , 0x90, init_copy_zm_reg
},
3712 { "INIT_ZM_REG_GROUP_ADDRESS_LATCHED" , 0x91, init_zm_reg_group_addr_latched
},
3713 { "INIT_RESERVED" , 0x92, init_reserved
},
3714 { "INIT_96" , 0x96, init_96
},
3715 { "INIT_97" , 0x97, init_97
},
3716 { "INIT_AUXCH" , 0x98, init_auxch
},
3717 { "INIT_ZM_AUXCH" , 0x99, init_zm_auxch
},
3718 { "INIT_I2C_LONG_IF" , 0x9A, init_i2c_long_if
},
3722 #define MAX_TABLE_OPS 1000
3725 parse_init_table(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3728 * Parses all commands in an init table.
3730 * We start out executing all commands found in the init table. Some
3731 * opcodes may change the status of iexec->execute to SKIP, which will
3732 * cause the following opcodes to perform no operation until the value
3733 * is changed back to EXECUTE.
3736 int count
= 0, i
, ret
;
3740 * Loop until INIT_DONE causes us to break out of the loop
3741 * (or until offset > bios length just in case... )
3742 * (and no more than MAX_TABLE_OPS iterations, just in case... )
3744 while ((offset
< bios
->length
) && (count
++ < MAX_TABLE_OPS
)) {
3745 id
= bios
->data
[offset
];
3747 /* Find matching id in itbl_entry */
3748 for (i
= 0; itbl_entry
[i
].name
&& (itbl_entry
[i
].id
!= id
); i
++)
3751 if (!itbl_entry
[i
].name
) {
3753 "0x%04X: Init table command not found: "
3754 "0x%02X\n", offset
, id
);
3758 BIOSLOG(bios
, "0x%04X: [ (0x%02X) - %s ]\n", offset
,
3759 itbl_entry
[i
].id
, itbl_entry
[i
].name
);
3761 /* execute eventual command handler */
3762 ret
= (*itbl_entry
[i
].handler
)(bios
, offset
, iexec
);
3764 NV_ERROR(bios
->dev
, "0x%04X: Failed parsing init "
3765 "table opcode: %s %d\n", offset
,
3766 itbl_entry
[i
].name
, ret
);
3773 * Add the offset of the current command including all data
3774 * of that command. The offset will then be pointing on the
3780 if (offset
>= bios
->length
)
3782 "Offset 0x%04X greater than known bios image length. "
3783 "Corrupt image?\n", offset
);
3784 if (count
>= MAX_TABLE_OPS
)
3786 "More than %d opcodes to a table is unlikely, "
3787 "is the bios image corrupt?\n", MAX_TABLE_OPS
);
3793 parse_init_tables(struct nvbios
*bios
)
3795 /* Loops and calls parse_init_table() for each present table. */
3799 struct init_exec iexec
= {true, false};
3801 if (bios
->old_style_init
) {
3802 if (bios
->init_script_tbls_ptr
)
3803 parse_init_table(bios
, bios
->init_script_tbls_ptr
, &iexec
);
3804 if (bios
->extra_init_script_tbl_ptr
)
3805 parse_init_table(bios
, bios
->extra_init_script_tbl_ptr
, &iexec
);
3810 while ((table
= ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ i
]))) {
3812 "Parsing VBIOS init table %d at offset 0x%04X\n",
3814 BIOSLOG(bios
, "0x%04X: ------ Executing following commands ------\n", table
);
3816 parse_init_table(bios
, table
, &iexec
);
3821 static uint16_t clkcmptable(struct nvbios
*bios
, uint16_t clktable
, int pxclk
)
3823 int compare_record_len
, i
= 0;
3824 uint16_t compareclk
, scriptptr
= 0;
3826 if (bios
->major_version
< 5) /* pre BIT */
3827 compare_record_len
= 3;
3829 compare_record_len
= 4;
3832 compareclk
= ROM16(bios
->data
[clktable
+ compare_record_len
* i
]);
3833 if (pxclk
>= compareclk
* 10) {
3834 if (bios
->major_version
< 5) {
3835 uint8_t tmdssub
= bios
->data
[clktable
+ 2 + compare_record_len
* i
];
3836 scriptptr
= ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ tmdssub
* 2]);
3838 scriptptr
= ROM16(bios
->data
[clktable
+ 2 + compare_record_len
* i
]);
3842 } while (compareclk
);
3848 run_digital_op_script(struct drm_device
*dev
, uint16_t scriptptr
,
3849 struct dcb_entry
*dcbent
, int head
, bool dl
)
3851 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3852 struct nvbios
*bios
= &dev_priv
->vbios
;
3853 struct init_exec iexec
= {true, false};
3855 NV_TRACE(dev
, "0x%04X: Parsing digital output script table\n",
3857 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, NV_CIO_CRE_44
,
3858 head
? NV_CIO_CRE_44_HEADB
: NV_CIO_CRE_44_HEADA
);
3859 /* note: if dcb entries have been merged, index may be misleading */
3860 NVWriteVgaCrtc5758(dev
, head
, 0, dcbent
->index
);
3861 parse_init_table(bios
, scriptptr
, &iexec
);
3863 nv04_dfp_bind_head(dev
, dcbent
, head
, dl
);
3866 static int call_lvds_manufacturer_script(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, enum LVDS_script script
)
3868 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3869 struct nvbios
*bios
= &dev_priv
->vbios
;
3870 uint8_t sub
= bios
->data
[bios
->fp
.xlated_entry
+ script
] + (bios
->fp
.link_c_increment
&& dcbent
->or & OUTPUT_C
? 1 : 0);
3871 uint16_t scriptofs
= ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ sub
* 2]);
3873 if (!bios
->fp
.xlated_entry
|| !sub
|| !scriptofs
)
3876 run_digital_op_script(dev
, scriptofs
, dcbent
, head
, bios
->fp
.dual_link
);
3878 if (script
== LVDS_PANEL_OFF
) {
3879 /* off-on delay in ms */
3880 mdelay(ROM16(bios
->data
[bios
->fp
.xlated_entry
+ 7]));
3883 /* Powerbook specific quirks */
3884 if (script
== LVDS_RESET
&&
3885 (dev
->pci_device
== 0x0179 || dev
->pci_device
== 0x0189 ||
3886 dev
->pci_device
== 0x0329))
3887 nv_write_tmds(dev
, dcbent
->or, 0, 0x02, 0x72);
3893 static int run_lvds_table(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, enum LVDS_script script
, int pxclk
)
3896 * The BIT LVDS table's header has the information to setup the
3897 * necessary registers. Following the standard 4 byte header are:
3898 * A bitmask byte and a dual-link transition pxclk value for use in
3899 * selecting the init script when not using straps; 4 script pointers
3900 * for panel power, selected by output and on/off; and 8 table pointers
3901 * for panel init, the needed one determined by output, and bits in the
3902 * conf byte. These tables are similar to the TMDS tables, consisting
3903 * of a list of pxclks and script pointers.
3905 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3906 struct nvbios
*bios
= &dev_priv
->vbios
;
3907 unsigned int outputset
= (dcbent
->or == 4) ? 1 : 0;
3908 uint16_t scriptptr
= 0, clktable
;
3911 * For now we assume version 3.0 table - g80 support will need some
3918 case LVDS_BACKLIGHT_ON
:
3920 scriptptr
= ROM16(bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 7 + outputset
* 2]);
3922 case LVDS_BACKLIGHT_OFF
:
3923 case LVDS_PANEL_OFF
:
3924 scriptptr
= ROM16(bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 11 + outputset
* 2]);
3927 clktable
= bios
->fp
.lvdsmanufacturerpointer
+ 15;
3928 if (dcbent
->or == 4)
3931 if (dcbent
->lvdsconf
.use_straps_for_mode
) {
3932 if (bios
->fp
.dual_link
)
3934 if (bios
->fp
.if_is_24bit
)
3938 int cmpval_24bit
= (dcbent
->or == 4) ? 4 : 1;
3940 if (bios
->fp
.dual_link
) {
3945 if (bios
->fp
.strapless_is_24bit
& cmpval_24bit
)
3949 clktable
= ROM16(bios
->data
[clktable
]);
3951 NV_ERROR(dev
, "Pixel clock comparison table not found\n");
3954 scriptptr
= clkcmptable(bios
, clktable
, pxclk
);
3958 NV_ERROR(dev
, "LVDS output init script not found\n");
3961 run_digital_op_script(dev
, scriptptr
, dcbent
, head
, bios
->fp
.dual_link
);
3966 int call_lvds_script(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, enum LVDS_script script
, int pxclk
)
3969 * LVDS operations are multiplexed in an effort to present a single API
3970 * which works with two vastly differing underlying structures.
3971 * This acts as the demux
3974 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3975 struct nvbios
*bios
= &dev_priv
->vbios
;
3976 uint8_t lvds_ver
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
];
3977 uint32_t sel_clk_binding
, sel_clk
;
3980 if (bios
->fp
.last_script_invoc
== (script
<< 1 | head
) || !lvds_ver
||
3981 (lvds_ver
>= 0x30 && script
== LVDS_INIT
))
3984 if (!bios
->fp
.lvds_init_run
) {
3985 bios
->fp
.lvds_init_run
= true;
3986 call_lvds_script(dev
, dcbent
, head
, LVDS_INIT
, pxclk
);
3989 if (script
== LVDS_PANEL_ON
&& bios
->fp
.reset_after_pclk_change
)
3990 call_lvds_script(dev
, dcbent
, head
, LVDS_RESET
, pxclk
);
3991 if (script
== LVDS_RESET
&& bios
->fp
.power_off_for_reset
)
3992 call_lvds_script(dev
, dcbent
, head
, LVDS_PANEL_OFF
, pxclk
);
3994 NV_TRACE(dev
, "Calling LVDS script %d:\n", script
);
3996 /* don't let script change pll->head binding */
3997 sel_clk_binding
= bios_rd32(bios
, NV_PRAMDAC_SEL_CLK
) & 0x50000;
3999 if (lvds_ver
< 0x30)
4000 ret
= call_lvds_manufacturer_script(dev
, dcbent
, head
, script
);
4002 ret
= run_lvds_table(dev
, dcbent
, head
, script
, pxclk
);
4004 bios
->fp
.last_script_invoc
= (script
<< 1 | head
);
4006 sel_clk
= NVReadRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
) & ~0x50000;
4007 NVWriteRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
, sel_clk
| sel_clk_binding
);
4008 /* some scripts set a value in NV_PBUS_POWERCTRL_2 and break video overlay */
4009 nvWriteMC(dev
, NV_PBUS_POWERCTRL_2
, 0);
4014 struct lvdstableheader
{
4015 uint8_t lvds_ver
, headerlen
, recordlen
;
4018 static int parse_lvds_manufacturer_table_header(struct drm_device
*dev
, struct nvbios
*bios
, struct lvdstableheader
*lth
)
4021 * BMP version (0xa) LVDS table has a simple header of version and
4022 * record length. The BIT LVDS table has the typical BIT table header:
4023 * version byte, header length byte, record length byte, and a byte for
4024 * the maximum number of records that can be held in the table.
4027 uint8_t lvds_ver
, headerlen
, recordlen
;
4029 memset(lth
, 0, sizeof(struct lvdstableheader
));
4031 if (bios
->fp
.lvdsmanufacturerpointer
== 0x0) {
4032 NV_ERROR(dev
, "Pointer to LVDS manufacturer table invalid\n");
4036 lvds_ver
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
];
4039 case 0x0a: /* pre NV40 */
4041 recordlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 1];
4043 case 0x30: /* NV4x */
4044 headerlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 1];
4045 if (headerlen
< 0x1f) {
4046 NV_ERROR(dev
, "LVDS table header not understood\n");
4049 recordlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 2];
4051 case 0x40: /* G80/G90 */
4052 headerlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 1];
4053 if (headerlen
< 0x7) {
4054 NV_ERROR(dev
, "LVDS table header not understood\n");
4057 recordlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 2];
4061 "LVDS table revision %d.%d not currently supported\n",
4062 lvds_ver
>> 4, lvds_ver
& 0xf);
4066 lth
->lvds_ver
= lvds_ver
;
4067 lth
->headerlen
= headerlen
;
4068 lth
->recordlen
= recordlen
;
4074 get_fp_strap(struct drm_device
*dev
, struct nvbios
*bios
)
4076 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4079 * The fp strap is normally dictated by the "User Strap" in
4080 * PEXTDEV_BOOT_0[20:16], but on BMP cards when bit 2 of the
4081 * Internal_Flags struct at 0x48 is set, the user strap gets overriden
4082 * by the PCI subsystem ID during POST, but not before the previous user
4083 * strap has been committed to CR58 for CR57=0xf on head A, which may be
4084 * read and used instead
4087 if (bios
->major_version
< 5 && bios
->data
[0x48] & 0x4)
4088 return NVReadVgaCrtc5758(dev
, 0, 0xf) & 0xf;
4090 if (dev_priv
->card_type
>= NV_50
)
4091 return (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) >> 24) & 0xf;
4093 return (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) >> 16) & 0xf;
4096 static int parse_fp_mode_table(struct drm_device
*dev
, struct nvbios
*bios
)
4099 uint8_t fptable_ver
, headerlen
= 0, recordlen
, fpentries
= 0xf, fpindex
;
4100 int ret
, ofs
, fpstrapping
;
4101 struct lvdstableheader lth
;
4103 if (bios
->fp
.fptablepointer
== 0x0) {
4104 /* Apple cards don't have the fp table; the laptops use DDC */
4105 /* The table is also missing on some x86 IGPs */
4107 NV_ERROR(dev
, "Pointer to flat panel table invalid\n");
4109 bios
->digital_min_front_porch
= 0x4b;
4113 fptable
= &bios
->data
[bios
->fp
.fptablepointer
];
4114 fptable_ver
= fptable
[0];
4116 switch (fptable_ver
) {
4118 * BMP version 0x5.0x11 BIOSen have version 1 like tables, but no
4119 * version field, and miss one of the spread spectrum/PWM bytes.
4120 * This could affect early GF2Go parts (not seen any appropriate ROMs
4121 * though). Here we assume that a version of 0x05 matches this case
4122 * (combining with a BMP version check would be better), as the
4123 * common case for the panel type field is 0x0005, and that is in
4124 * fact what we are reading the first byte of.
4126 case 0x05: /* some NV10, 11, 15, 16 */
4130 case 0x10: /* some NV15/16, and NV11+ */
4134 case 0x20: /* NV40+ */
4135 headerlen
= fptable
[1];
4136 recordlen
= fptable
[2];
4137 fpentries
= fptable
[3];
4139 * fptable[4] is the minimum
4140 * RAMDAC_FP_HCRTC -> RAMDAC_FP_HSYNC_START gap
4142 bios
->digital_min_front_porch
= fptable
[4];
4147 "FP table revision %d.%d not currently supported\n",
4148 fptable_ver
>> 4, fptable_ver
& 0xf);
4152 if (!bios
->is_mobile
) /* !mobile only needs digital_min_front_porch */
4155 ret
= parse_lvds_manufacturer_table_header(dev
, bios
, <h
);
4159 if (lth
.lvds_ver
== 0x30 || lth
.lvds_ver
== 0x40) {
4160 bios
->fp
.fpxlatetableptr
= bios
->fp
.lvdsmanufacturerpointer
+
4162 bios
->fp
.xlatwidth
= lth
.recordlen
;
4164 if (bios
->fp
.fpxlatetableptr
== 0x0) {
4165 NV_ERROR(dev
, "Pointer to flat panel xlat table invalid\n");
4169 fpstrapping
= get_fp_strap(dev
, bios
);
4171 fpindex
= bios
->data
[bios
->fp
.fpxlatetableptr
+
4172 fpstrapping
* bios
->fp
.xlatwidth
];
4174 if (fpindex
> fpentries
) {
4175 NV_ERROR(dev
, "Bad flat panel table index\n");
4179 /* nv4x cards need both a strap value and fpindex of 0xf to use DDC */
4180 if (lth
.lvds_ver
> 0x10)
4181 bios
->fp_no_ddc
= fpstrapping
!= 0xf || fpindex
!= 0xf;
4184 * If either the strap or xlated fpindex value are 0xf there is no
4185 * panel using a strap-derived bios mode present. this condition
4186 * includes, but is different from, the DDC panel indicator above
4188 if (fpstrapping
== 0xf || fpindex
== 0xf)
4191 bios
->fp
.mode_ptr
= bios
->fp
.fptablepointer
+ headerlen
+
4192 recordlen
* fpindex
+ ofs
;
4194 NV_TRACE(dev
, "BIOS FP mode: %dx%d (%dkHz pixel clock)\n",
4195 ROM16(bios
->data
[bios
->fp
.mode_ptr
+ 11]) + 1,
4196 ROM16(bios
->data
[bios
->fp
.mode_ptr
+ 25]) + 1,
4197 ROM16(bios
->data
[bios
->fp
.mode_ptr
+ 7]) * 10);
4202 bool nouveau_bios_fp_mode(struct drm_device
*dev
, struct drm_display_mode
*mode
)
4204 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4205 struct nvbios
*bios
= &dev_priv
->vbios
;
4206 uint8_t *mode_entry
= &bios
->data
[bios
->fp
.mode_ptr
];
4208 if (!mode
) /* just checking whether we can produce a mode */
4209 return bios
->fp
.mode_ptr
;
4211 memset(mode
, 0, sizeof(struct drm_display_mode
));
4213 * For version 1.0 (version in byte 0):
4214 * bytes 1-2 are "panel type", including bits on whether Colour/mono,
4215 * single/dual link, and type (TFT etc.)
4216 * bytes 3-6 are bits per colour in RGBX
4218 mode
->clock
= ROM16(mode_entry
[7]) * 10;
4219 /* bytes 9-10 is HActive */
4220 mode
->hdisplay
= ROM16(mode_entry
[11]) + 1;
4222 * bytes 13-14 is HValid Start
4223 * bytes 15-16 is HValid End
4225 mode
->hsync_start
= ROM16(mode_entry
[17]) + 1;
4226 mode
->hsync_end
= ROM16(mode_entry
[19]) + 1;
4227 mode
->htotal
= ROM16(mode_entry
[21]) + 1;
4228 /* bytes 23-24, 27-30 similarly, but vertical */
4229 mode
->vdisplay
= ROM16(mode_entry
[25]) + 1;
4230 mode
->vsync_start
= ROM16(mode_entry
[31]) + 1;
4231 mode
->vsync_end
= ROM16(mode_entry
[33]) + 1;
4232 mode
->vtotal
= ROM16(mode_entry
[35]) + 1;
4233 mode
->flags
|= (mode_entry
[37] & 0x10) ?
4234 DRM_MODE_FLAG_PHSYNC
: DRM_MODE_FLAG_NHSYNC
;
4235 mode
->flags
|= (mode_entry
[37] & 0x1) ?
4236 DRM_MODE_FLAG_PVSYNC
: DRM_MODE_FLAG_NVSYNC
;
4238 * bytes 38-39 relate to spread spectrum settings
4239 * bytes 40-43 are something to do with PWM
4242 mode
->status
= MODE_OK
;
4243 mode
->type
= DRM_MODE_TYPE_DRIVER
| DRM_MODE_TYPE_PREFERRED
;
4244 drm_mode_set_name(mode
);
4245 return bios
->fp
.mode_ptr
;
4248 int nouveau_bios_parse_lvds_table(struct drm_device
*dev
, int pxclk
, bool *dl
, bool *if_is_24bit
)
4251 * The LVDS table header is (mostly) described in
4252 * parse_lvds_manufacturer_table_header(): the BIT header additionally
4253 * contains the dual-link transition pxclk (in 10s kHz), at byte 5 - if
4254 * straps are not being used for the panel, this specifies the frequency
4255 * at which modes should be set up in the dual link style.
4257 * Following the header, the BMP (ver 0xa) table has several records,
4258 * indexed by a separate xlat table, indexed in turn by the fp strap in
4259 * EXTDEV_BOOT. Each record had a config byte, followed by 6 script
4260 * numbers for use by INIT_SUB which controlled panel init and power,
4261 * and finally a dword of ms to sleep between power off and on
4264 * In the BIT versions, the table following the header serves as an
4265 * integrated config and xlat table: the records in the table are
4266 * indexed by the FP strap nibble in EXTDEV_BOOT, and each record has
4267 * two bytes - the first as a config byte, the second for indexing the
4268 * fp mode table pointed to by the BIT 'D' table
4270 * DDC is not used until after card init, so selecting the correct table
4271 * entry and setting the dual link flag for EDID equipped panels,
4272 * requiring tests against the native-mode pixel clock, cannot be done
4273 * until later, when this function should be called with non-zero pxclk
4275 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4276 struct nvbios
*bios
= &dev_priv
->vbios
;
4277 int fpstrapping
= get_fp_strap(dev
, bios
), lvdsmanufacturerindex
= 0;
4278 struct lvdstableheader lth
;
4280 int ret
, chip_version
= bios
->chip_version
;
4282 ret
= parse_lvds_manufacturer_table_header(dev
, bios
, <h
);
4286 switch (lth
.lvds_ver
) {
4287 case 0x0a: /* pre NV40 */
4288 lvdsmanufacturerindex
= bios
->data
[
4289 bios
->fp
.fpxlatemanufacturertableptr
+
4292 /* we're done if this isn't the EDID panel case */
4296 if (chip_version
< 0x25) {
4299 * It seems the old style lvds script pointer is reused
4300 * to select 18/24 bit colour depth for EDID panels.
4302 lvdsmanufacturerindex
=
4303 (bios
->legacy
.lvds_single_a_script_ptr
& 1) ?
4305 if (pxclk
>= bios
->fp
.duallink_transition_clk
)
4306 lvdsmanufacturerindex
++;
4307 } else if (chip_version
< 0x30) {
4308 /* nv28 behaviour (off-chip encoder)
4310 * nv28 does a complex dance of first using byte 121 of
4311 * the EDID to choose the lvdsmanufacturerindex, then
4312 * later attempting to match the EDID manufacturer and
4313 * product IDs in a table (signature 'pidt' (panel id
4314 * table?)), setting an lvdsmanufacturerindex of 0 and
4315 * an fp strap of the match index (or 0xf if none)
4317 lvdsmanufacturerindex
= 0;
4319 /* nv31, nv34 behaviour */
4320 lvdsmanufacturerindex
= 0;
4321 if (pxclk
>= bios
->fp
.duallink_transition_clk
)
4322 lvdsmanufacturerindex
= 2;
4323 if (pxclk
>= 140000)
4324 lvdsmanufacturerindex
= 3;
4328 * nvidia set the high nibble of (cr57=f, cr58) to
4329 * lvdsmanufacturerindex in this case; we don't
4332 case 0x30: /* NV4x */
4333 case 0x40: /* G80/G90 */
4334 lvdsmanufacturerindex
= fpstrapping
;
4337 NV_ERROR(dev
, "LVDS table revision not currently supported\n");
4341 lvdsofs
= bios
->fp
.xlated_entry
= bios
->fp
.lvdsmanufacturerpointer
+ lth
.headerlen
+ lth
.recordlen
* lvdsmanufacturerindex
;
4342 switch (lth
.lvds_ver
) {
4344 bios
->fp
.power_off_for_reset
= bios
->data
[lvdsofs
] & 1;
4345 bios
->fp
.reset_after_pclk_change
= bios
->data
[lvdsofs
] & 2;
4346 bios
->fp
.dual_link
= bios
->data
[lvdsofs
] & 4;
4347 bios
->fp
.link_c_increment
= bios
->data
[lvdsofs
] & 8;
4348 *if_is_24bit
= bios
->data
[lvdsofs
] & 16;
4353 * No sign of the "power off for reset" or "reset for panel
4354 * on" bits, but it's safer to assume we should
4356 bios
->fp
.power_off_for_reset
= true;
4357 bios
->fp
.reset_after_pclk_change
= true;
4360 * It's ok lvdsofs is wrong for nv4x edid case; dual_link is
4361 * over-written, and if_is_24bit isn't used
4363 bios
->fp
.dual_link
= bios
->data
[lvdsofs
] & 1;
4364 bios
->fp
.if_is_24bit
= bios
->data
[lvdsofs
] & 2;
4365 bios
->fp
.strapless_is_24bit
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 4];
4366 bios
->fp
.duallink_transition_clk
= ROM16(bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 5]) * 10;
4370 /* Dell Latitude D620 reports a too-high value for the dual-link
4371 * transition freq, causing us to program the panel incorrectly.
4373 * It doesn't appear the VBIOS actually uses its transition freq
4374 * (90000kHz), instead it uses the "Number of LVDS channels" field
4375 * out of the panel ID structure (http://www.spwg.org/).
4377 * For the moment, a quirk will do :)
4379 if (nv_match_device(dev
, 0x01d7, 0x1028, 0x01c2))
4380 bios
->fp
.duallink_transition_clk
= 80000;
4382 /* set dual_link flag for EDID case */
4383 if (pxclk
&& (chip_version
< 0x25 || chip_version
> 0x28))
4384 bios
->fp
.dual_link
= (pxclk
>= bios
->fp
.duallink_transition_clk
);
4386 *dl
= bios
->fp
.dual_link
;
4392 bios_output_config_match(struct drm_device
*dev
, struct dcb_entry
*dcbent
,
4393 uint16_t record
, int record_len
, int record_nr
,
4396 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4397 struct nvbios
*bios
= &dev_priv
->vbios
;
4402 switch (dcbent
->type
) {
4412 for (i
= 0; i
< record_nr
; i
++, record
+= record_len
) {
4413 table
= ROM16(bios
->data
[record
]);
4416 entry
= ROM32(bios
->data
[table
]);
4419 v
= (entry
& 0x00c00000) >> 22;
4420 if (!(v
& dcbent
->sorconf
.link
))
4424 v
= (entry
& 0x000f0000) >> 16;
4425 if (!(v
& dcbent
->or))
4428 v
= (entry
& 0x000000f0) >> 4;
4429 if (v
!= dcbent
->location
)
4432 v
= (entry
& 0x0000000f);
4433 if (v
!= dcbent
->type
)
4436 return &bios
->data
[table
];
4443 nouveau_bios_dp_table(struct drm_device
*dev
, struct dcb_entry
*dcbent
,
4446 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4447 struct nvbios
*bios
= &dev_priv
->vbios
;
4450 if (!bios
->display
.dp_table_ptr
) {
4451 NV_ERROR(dev
, "No pointer to DisplayPort table\n");
4454 table
= &bios
->data
[bios
->display
.dp_table_ptr
];
4456 if (table
[0] != 0x20 && table
[0] != 0x21) {
4457 NV_ERROR(dev
, "DisplayPort table version 0x%02x unknown\n",
4463 return bios_output_config_match(dev
, dcbent
,
4464 bios
->display
.dp_table_ptr
+ table
[1],
4465 table
[2], table
[3], table
[0] >= 0x21);
4469 nouveau_bios_run_display_table(struct drm_device
*dev
, struct dcb_entry
*dcbent
,
4470 uint32_t sub
, int pxclk
)
4473 * The display script table is located by the BIT 'U' table.
4475 * It contains an array of pointers to various tables describing
4476 * a particular output type. The first 32-bits of the output
4477 * tables contains similar information to a DCB entry, and is
4478 * used to decide whether that particular table is suitable for
4479 * the output you want to access.
4481 * The "record header length" field here seems to indicate the
4482 * offset of the first configuration entry in the output tables.
4483 * This is 10 on most cards I've seen, but 12 has been witnessed
4484 * on DP cards, and there's another script pointer within the
4487 * offset + 0 ( 8 bits): version
4488 * offset + 1 ( 8 bits): header length
4489 * offset + 2 ( 8 bits): record length
4490 * offset + 3 ( 8 bits): number of records
4491 * offset + 4 ( 8 bits): record header length
4492 * offset + 5 (16 bits): pointer to first output script table
4495 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4496 struct nvbios
*bios
= &dev_priv
->vbios
;
4497 uint8_t *table
= &bios
->data
[bios
->display
.script_table_ptr
];
4498 uint8_t *otable
= NULL
;
4502 if (!bios
->display
.script_table_ptr
) {
4503 NV_ERROR(dev
, "No pointer to output script table\n");
4508 * Nothing useful has been in any of the pre-2.0 tables I've seen,
4509 * so until they are, we really don't need to care.
4511 if (table
[0] < 0x20)
4514 if (table
[0] != 0x20 && table
[0] != 0x21) {
4515 NV_ERROR(dev
, "Output script table version 0x%02x unknown\n",
4521 * The output script tables describing a particular output type
4524 * offset + 0 (32 bits): output this table matches (hash of DCB)
4525 * offset + 4 ( 8 bits): unknown
4526 * offset + 5 ( 8 bits): number of configurations
4527 * offset + 6 (16 bits): pointer to some script
4528 * offset + 8 (16 bits): pointer to some script
4531 * offset + 10 : configuration 0
4534 * offset + 10 : pointer to some script
4535 * offset + 12 : configuration 0
4537 * Each config entry is as follows:
4539 * offset + 0 (16 bits): unknown, assumed to be a match value
4540 * offset + 2 (16 bits): pointer to script table (clock set?)
4541 * offset + 4 (16 bits): pointer to script table (reset?)
4543 * There doesn't appear to be a count value to say how many
4544 * entries exist in each script table, instead, a 0 value in
4545 * the first 16-bit word seems to indicate both the end of the
4546 * list and the default entry. The second 16-bit word in the
4547 * script tables is a pointer to the script to execute.
4550 NV_DEBUG_KMS(dev
, "Searching for output entry for %d %d %d\n",
4551 dcbent
->type
, dcbent
->location
, dcbent
->or);
4552 otable
= bios_output_config_match(dev
, dcbent
, table
[1] +
4553 bios
->display
.script_table_ptr
,
4554 table
[2], table
[3], table
[0] >= 0x21);
4556 NV_DEBUG_KMS(dev
, "failed to match any output table\n");
4560 if (pxclk
< -2 || pxclk
> 0) {
4561 /* Try to find matching script table entry */
4562 for (i
= 0; i
< otable
[5]; i
++) {
4563 if (ROM16(otable
[table
[4] + i
*6]) == sub
)
4567 if (i
== otable
[5]) {
4568 NV_ERROR(dev
, "Table 0x%04x not found for %d/%d, "
4570 sub
, dcbent
->type
, dcbent
->or);
4576 script
= ROM16(otable
[6]);
4578 NV_DEBUG_KMS(dev
, "output script 0 not found\n");
4582 NV_DEBUG_KMS(dev
, "0x%04X: parsing output script 0\n", script
);
4583 nouveau_bios_run_init_table(dev
, script
, dcbent
);
4586 script
= ROM16(otable
[8]);
4588 NV_DEBUG_KMS(dev
, "output script 1 not found\n");
4592 NV_DEBUG_KMS(dev
, "0x%04X: parsing output script 1\n", script
);
4593 nouveau_bios_run_init_table(dev
, script
, dcbent
);
4597 script
= ROM16(otable
[10]);
4601 NV_DEBUG_KMS(dev
, "output script 2 not found\n");
4605 NV_DEBUG_KMS(dev
, "0x%04X: parsing output script 2\n", script
);
4606 nouveau_bios_run_init_table(dev
, script
, dcbent
);
4609 script
= ROM16(otable
[table
[4] + i
*6 + 2]);
4611 script
= clkcmptable(bios
, script
, pxclk
);
4613 NV_DEBUG_KMS(dev
, "clock script 0 not found\n");
4617 NV_DEBUG_KMS(dev
, "0x%04X: parsing clock script 0\n", script
);
4618 nouveau_bios_run_init_table(dev
, script
, dcbent
);
4621 script
= ROM16(otable
[table
[4] + i
*6 + 4]);
4623 script
= clkcmptable(bios
, script
, -pxclk
);
4625 NV_DEBUG_KMS(dev
, "clock script 1 not found\n");
4629 NV_DEBUG_KMS(dev
, "0x%04X: parsing clock script 1\n", script
);
4630 nouveau_bios_run_init_table(dev
, script
, dcbent
);
4637 int run_tmds_table(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, int pxclk
)
4640 * the pxclk parameter is in kHz
4642 * This runs the TMDS regs setting code found on BIT bios cards
4644 * For ffs(or) == 1 use the first table, for ffs(or) == 2 and
4645 * ffs(or) == 3, use the second.
4648 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4649 struct nvbios
*bios
= &dev_priv
->vbios
;
4650 int cv
= bios
->chip_version
;
4651 uint16_t clktable
= 0, scriptptr
;
4652 uint32_t sel_clk_binding
, sel_clk
;
4654 /* pre-nv17 off-chip tmds uses scripts, post nv17 doesn't */
4655 if (cv
>= 0x17 && cv
!= 0x1a && cv
!= 0x20 &&
4656 dcbent
->location
!= DCB_LOC_ON_CHIP
)
4659 switch (ffs(dcbent
->or)) {
4661 clktable
= bios
->tmds
.output0_script_ptr
;
4665 clktable
= bios
->tmds
.output1_script_ptr
;
4670 NV_ERROR(dev
, "Pixel clock comparison table not found\n");
4674 scriptptr
= clkcmptable(bios
, clktable
, pxclk
);
4677 NV_ERROR(dev
, "TMDS output init script not found\n");
4681 /* don't let script change pll->head binding */
4682 sel_clk_binding
= bios_rd32(bios
, NV_PRAMDAC_SEL_CLK
) & 0x50000;
4683 run_digital_op_script(dev
, scriptptr
, dcbent
, head
, pxclk
>= 165000);
4684 sel_clk
= NVReadRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
) & ~0x50000;
4685 NVWriteRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
, sel_clk
| sel_clk_binding
);
4690 struct pll_mapping
{
4695 static struct pll_mapping nv04_pll_mapping
[] = {
4696 { PLL_CORE
, NV_PRAMDAC_NVPLL_COEFF
},
4697 { PLL_MEMORY
, NV_PRAMDAC_MPLL_COEFF
},
4698 { PLL_VPLL0
, NV_PRAMDAC_VPLL_COEFF
},
4699 { PLL_VPLL1
, NV_RAMDAC_VPLL2
},
4703 static struct pll_mapping nv40_pll_mapping
[] = {
4704 { PLL_CORE
, 0x004000 },
4705 { PLL_MEMORY
, 0x004020 },
4706 { PLL_VPLL0
, NV_PRAMDAC_VPLL_COEFF
},
4707 { PLL_VPLL1
, NV_RAMDAC_VPLL2
},
4711 static struct pll_mapping nv50_pll_mapping
[] = {
4712 { PLL_CORE
, 0x004028 },
4713 { PLL_SHADER
, 0x004020 },
4714 { PLL_UNK03
, 0x004000 },
4715 { PLL_MEMORY
, 0x004008 },
4716 { PLL_UNK40
, 0x00e810 },
4717 { PLL_UNK41
, 0x00e818 },
4718 { PLL_UNK42
, 0x00e824 },
4719 { PLL_VPLL0
, 0x614100 },
4720 { PLL_VPLL1
, 0x614900 },
4724 static struct pll_mapping nv84_pll_mapping
[] = {
4725 { PLL_CORE
, 0x004028 },
4726 { PLL_SHADER
, 0x004020 },
4727 { PLL_MEMORY
, 0x004008 },
4728 { PLL_UNK05
, 0x004030 },
4729 { PLL_UNK41
, 0x00e818 },
4730 { PLL_VPLL0
, 0x614100 },
4731 { PLL_VPLL1
, 0x614900 },
4736 get_pll_register(struct drm_device
*dev
, enum pll_types type
)
4738 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4739 struct nvbios
*bios
= &dev_priv
->vbios
;
4740 struct pll_mapping
*map
;
4743 if (dev_priv
->card_type
< NV_40
)
4744 map
= nv04_pll_mapping
;
4746 if (dev_priv
->card_type
< NV_50
)
4747 map
= nv40_pll_mapping
;
4749 u8
*plim
= &bios
->data
[bios
->pll_limit_tbl_ptr
];
4751 if (plim
[0] >= 0x30) {
4752 u8
*entry
= plim
+ plim
[1];
4753 for (i
= 0; i
< plim
[3]; i
++, entry
+= plim
[2]) {
4754 if (entry
[0] == type
)
4755 return ROM32(entry
[3]);
4761 if (dev_priv
->chipset
== 0x50)
4762 map
= nv50_pll_mapping
;
4764 map
= nv84_pll_mapping
;
4768 if (map
->type
== type
)
4776 int get_pll_limits(struct drm_device
*dev
, uint32_t limit_match
, struct pll_lims
*pll_lim
)
4781 * Version 0x10: NV30, NV31
4782 * One byte header (version), one record of 24 bytes
4783 * Version 0x11: NV36 - Not implemented
4784 * Seems to have same record style as 0x10, but 3 records rather than 1
4785 * Version 0x20: Found on Geforce 6 cards
4786 * Trivial 4 byte BIT header. 31 (0x1f) byte record length
4787 * Version 0x21: Found on Geforce 7, 8 and some Geforce 6 cards
4788 * 5 byte header, fifth byte of unknown purpose. 35 (0x23) byte record
4789 * length in general, some (integrated) have an extra configuration byte
4790 * Version 0x30: Found on Geforce 8, separates the register mapping
4791 * from the limits tables.
4794 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4795 struct nvbios
*bios
= &dev_priv
->vbios
;
4796 int cv
= bios
->chip_version
, pllindex
= 0;
4797 uint8_t pll_lim_ver
= 0, headerlen
= 0, recordlen
= 0, entries
= 0;
4798 uint32_t crystal_strap_mask
, crystal_straps
;
4800 if (!bios
->pll_limit_tbl_ptr
) {
4801 if (cv
== 0x30 || cv
== 0x31 || cv
== 0x35 || cv
== 0x36 ||
4803 NV_ERROR(dev
, "Pointer to PLL limits table invalid\n");
4807 pll_lim_ver
= bios
->data
[bios
->pll_limit_tbl_ptr
];
4809 crystal_strap_mask
= 1 << 6;
4810 /* open coded dev->twoHeads test */
4811 if (cv
> 0x10 && cv
!= 0x15 && cv
!= 0x1a && cv
!= 0x20)
4812 crystal_strap_mask
|= 1 << 22;
4813 crystal_straps
= nvReadEXTDEV(dev
, NV_PEXTDEV_BOOT_0
) &
4816 switch (pll_lim_ver
) {
4818 * We use version 0 to indicate a pre limit table bios (single stage
4819 * pll) and load the hard coded limits instead.
4826 * Strictly v0x11 has 3 entries, but the last two don't seem
4838 headerlen
= bios
->data
[bios
->pll_limit_tbl_ptr
+ 1];
4839 recordlen
= bios
->data
[bios
->pll_limit_tbl_ptr
+ 2];
4840 entries
= bios
->data
[bios
->pll_limit_tbl_ptr
+ 3];
4843 NV_ERROR(dev
, "PLL limits table revision 0x%X not currently "
4844 "supported\n", pll_lim_ver
);
4848 /* initialize all members to zero */
4849 memset(pll_lim
, 0, sizeof(struct pll_lims
));
4851 /* if we were passed a type rather than a register, figure
4852 * out the register and store it
4854 if (limit_match
> PLL_MAX
)
4855 pll_lim
->reg
= limit_match
;
4857 pll_lim
->reg
= get_pll_register(dev
, limit_match
);
4862 if (pll_lim_ver
== 0x10 || pll_lim_ver
== 0x11) {
4863 uint8_t *pll_rec
= &bios
->data
[bios
->pll_limit_tbl_ptr
+ headerlen
+ recordlen
* pllindex
];
4865 pll_lim
->vco1
.minfreq
= ROM32(pll_rec
[0]);
4866 pll_lim
->vco1
.maxfreq
= ROM32(pll_rec
[4]);
4867 pll_lim
->vco2
.minfreq
= ROM32(pll_rec
[8]);
4868 pll_lim
->vco2
.maxfreq
= ROM32(pll_rec
[12]);
4869 pll_lim
->vco1
.min_inputfreq
= ROM32(pll_rec
[16]);
4870 pll_lim
->vco2
.min_inputfreq
= ROM32(pll_rec
[20]);
4871 pll_lim
->vco1
.max_inputfreq
= pll_lim
->vco2
.max_inputfreq
= INT_MAX
;
4873 /* these values taken from nv30/31/36 */
4874 pll_lim
->vco1
.min_n
= 0x1;
4876 pll_lim
->vco1
.min_n
= 0x5;
4877 pll_lim
->vco1
.max_n
= 0xff;
4878 pll_lim
->vco1
.min_m
= 0x1;
4879 pll_lim
->vco1
.max_m
= 0xd;
4880 pll_lim
->vco2
.min_n
= 0x4;
4882 * On nv30, 31, 36 (i.e. all cards with two stage PLLs with this
4883 * table version (apart from nv35)), N2 is compared to
4884 * maxN2 (0x46) and 10 * maxM2 (0x4), so set maxN2 to 0x28 and
4887 pll_lim
->vco2
.max_n
= 0x28;
4888 if (cv
== 0x30 || cv
== 0x35)
4889 /* only 5 bits available for N2 on nv30/35 */
4890 pll_lim
->vco2
.max_n
= 0x1f;
4891 pll_lim
->vco2
.min_m
= 0x1;
4892 pll_lim
->vco2
.max_m
= 0x4;
4893 pll_lim
->max_log2p
= 0x7;
4894 pll_lim
->max_usable_log2p
= 0x6;
4895 } else if (pll_lim_ver
== 0x20 || pll_lim_ver
== 0x21) {
4896 uint16_t plloffs
= bios
->pll_limit_tbl_ptr
+ headerlen
;
4901 * First entry is default match, if nothing better. warn if
4904 if (ROM32(bios
->data
[plloffs
]))
4905 NV_WARN(dev
, "Default PLL limit entry has non-zero "
4906 "register field\n");
4908 for (i
= 1; i
< entries
; i
++)
4909 if (ROM32(bios
->data
[plloffs
+ recordlen
* i
]) == pll_lim
->reg
) {
4914 if ((dev_priv
->card_type
>= NV_50
) && (pllindex
== 0)) {
4915 NV_ERROR(dev
, "Register 0x%08x not found in PLL "
4916 "limits table", pll_lim
->reg
);
4920 pll_rec
= &bios
->data
[plloffs
+ recordlen
* pllindex
];
4922 BIOSLOG(bios
, "Loading PLL limits for reg 0x%08x\n",
4923 pllindex
? pll_lim
->reg
: 0);
4926 * Frequencies are stored in tables in MHz, kHz are more
4927 * useful, so we convert.
4930 /* What output frequencies can each VCO generate? */
4931 pll_lim
->vco1
.minfreq
= ROM16(pll_rec
[4]) * 1000;
4932 pll_lim
->vco1
.maxfreq
= ROM16(pll_rec
[6]) * 1000;
4933 pll_lim
->vco2
.minfreq
= ROM16(pll_rec
[8]) * 1000;
4934 pll_lim
->vco2
.maxfreq
= ROM16(pll_rec
[10]) * 1000;
4936 /* What input frequencies they accept (past the m-divider)? */
4937 pll_lim
->vco1
.min_inputfreq
= ROM16(pll_rec
[12]) * 1000;
4938 pll_lim
->vco2
.min_inputfreq
= ROM16(pll_rec
[14]) * 1000;
4939 pll_lim
->vco1
.max_inputfreq
= ROM16(pll_rec
[16]) * 1000;
4940 pll_lim
->vco2
.max_inputfreq
= ROM16(pll_rec
[18]) * 1000;
4942 /* What values are accepted as multiplier and divider? */
4943 pll_lim
->vco1
.min_n
= pll_rec
[20];
4944 pll_lim
->vco1
.max_n
= pll_rec
[21];
4945 pll_lim
->vco1
.min_m
= pll_rec
[22];
4946 pll_lim
->vco1
.max_m
= pll_rec
[23];
4947 pll_lim
->vco2
.min_n
= pll_rec
[24];
4948 pll_lim
->vco2
.max_n
= pll_rec
[25];
4949 pll_lim
->vco2
.min_m
= pll_rec
[26];
4950 pll_lim
->vco2
.max_m
= pll_rec
[27];
4952 pll_lim
->max_usable_log2p
= pll_lim
->max_log2p
= pll_rec
[29];
4953 if (pll_lim
->max_log2p
> 0x7)
4954 /* pll decoding in nv_hw.c assumes never > 7 */
4955 NV_WARN(dev
, "Max log2 P value greater than 7 (%d)\n",
4956 pll_lim
->max_log2p
);
4958 pll_lim
->max_usable_log2p
= 0x6;
4959 pll_lim
->log2p_bias
= pll_rec
[30];
4961 if (recordlen
> 0x22)
4962 pll_lim
->refclk
= ROM32(pll_rec
[31]);
4964 if (recordlen
> 0x23 && pll_rec
[35])
4966 "Bits set in PLL configuration byte (%x)\n",
4969 /* C51 special not seen elsewhere */
4970 if (cv
== 0x51 && !pll_lim
->refclk
) {
4971 uint32_t sel_clk
= bios_rd32(bios
, NV_PRAMDAC_SEL_CLK
);
4973 if ((pll_lim
->reg
== NV_PRAMDAC_VPLL_COEFF
&& sel_clk
& 0x20) ||
4974 (pll_lim
->reg
== NV_RAMDAC_VPLL2
&& sel_clk
& 0x80)) {
4975 if (bios_idxprt_rd(bios
, NV_CIO_CRX__COLOR
, NV_CIO_CRE_CHIP_ID_INDEX
) < 0xa3)
4976 pll_lim
->refclk
= 200000;
4978 pll_lim
->refclk
= 25000;
4981 } else if (pll_lim_ver
== 0x30) { /* ver 0x30 */
4982 uint8_t *entry
= &bios
->data
[bios
->pll_limit_tbl_ptr
+ headerlen
];
4983 uint8_t *record
= NULL
;
4986 BIOSLOG(bios
, "Loading PLL limits for register 0x%08x\n",
4989 for (i
= 0; i
< entries
; i
++, entry
+= recordlen
) {
4990 if (ROM32(entry
[3]) == pll_lim
->reg
) {
4991 record
= &bios
->data
[ROM16(entry
[1])];
4997 NV_ERROR(dev
, "Register 0x%08x not found in PLL "
4998 "limits table", pll_lim
->reg
);
5002 pll_lim
->vco1
.minfreq
= ROM16(record
[0]) * 1000;
5003 pll_lim
->vco1
.maxfreq
= ROM16(record
[2]) * 1000;
5004 pll_lim
->vco2
.minfreq
= ROM16(record
[4]) * 1000;
5005 pll_lim
->vco2
.maxfreq
= ROM16(record
[6]) * 1000;
5006 pll_lim
->vco1
.min_inputfreq
= ROM16(record
[8]) * 1000;
5007 pll_lim
->vco2
.min_inputfreq
= ROM16(record
[10]) * 1000;
5008 pll_lim
->vco1
.max_inputfreq
= ROM16(record
[12]) * 1000;
5009 pll_lim
->vco2
.max_inputfreq
= ROM16(record
[14]) * 1000;
5010 pll_lim
->vco1
.min_n
= record
[16];
5011 pll_lim
->vco1
.max_n
= record
[17];
5012 pll_lim
->vco1
.min_m
= record
[18];
5013 pll_lim
->vco1
.max_m
= record
[19];
5014 pll_lim
->vco2
.min_n
= record
[20];
5015 pll_lim
->vco2
.max_n
= record
[21];
5016 pll_lim
->vco2
.min_m
= record
[22];
5017 pll_lim
->vco2
.max_m
= record
[23];
5018 pll_lim
->max_usable_log2p
= pll_lim
->max_log2p
= record
[25];
5019 pll_lim
->log2p_bias
= record
[27];
5020 pll_lim
->refclk
= ROM32(record
[28]);
5021 } else if (pll_lim_ver
) { /* ver 0x40 */
5022 uint8_t *entry
= &bios
->data
[bios
->pll_limit_tbl_ptr
+ headerlen
];
5023 uint8_t *record
= NULL
;
5026 BIOSLOG(bios
, "Loading PLL limits for register 0x%08x\n",
5029 for (i
= 0; i
< entries
; i
++, entry
+= recordlen
) {
5030 if (ROM32(entry
[3]) == pll_lim
->reg
) {
5031 record
= &bios
->data
[ROM16(entry
[1])];
5037 NV_ERROR(dev
, "Register 0x%08x not found in PLL "
5038 "limits table", pll_lim
->reg
);
5042 pll_lim
->vco1
.minfreq
= ROM16(record
[0]) * 1000;
5043 pll_lim
->vco1
.maxfreq
= ROM16(record
[2]) * 1000;
5044 pll_lim
->vco1
.min_inputfreq
= ROM16(record
[4]) * 1000;
5045 pll_lim
->vco1
.max_inputfreq
= ROM16(record
[6]) * 1000;
5046 pll_lim
->vco1
.min_m
= record
[8];
5047 pll_lim
->vco1
.max_m
= record
[9];
5048 pll_lim
->vco1
.min_n
= record
[10];
5049 pll_lim
->vco1
.max_n
= record
[11];
5050 pll_lim
->min_p
= record
[12];
5051 pll_lim
->max_p
= record
[13];
5052 pll_lim
->refclk
= ROM16(entry
[9]) * 1000;
5056 * By now any valid limit table ought to have set a max frequency for
5057 * vco1, so if it's zero it's either a pre limit table bios, or one
5058 * with an empty limit table (seen on nv18)
5060 if (!pll_lim
->vco1
.maxfreq
) {
5061 pll_lim
->vco1
.minfreq
= bios
->fminvco
;
5062 pll_lim
->vco1
.maxfreq
= bios
->fmaxvco
;
5063 pll_lim
->vco1
.min_inputfreq
= 0;
5064 pll_lim
->vco1
.max_inputfreq
= INT_MAX
;
5065 pll_lim
->vco1
.min_n
= 0x1;
5066 pll_lim
->vco1
.max_n
= 0xff;
5067 pll_lim
->vco1
.min_m
= 0x1;
5068 if (crystal_straps
== 0) {
5069 /* nv05 does this, nv11 doesn't, nv10 unknown */
5071 pll_lim
->vco1
.min_m
= 0x7;
5072 pll_lim
->vco1
.max_m
= 0xd;
5075 pll_lim
->vco1
.min_m
= 0x8;
5076 pll_lim
->vco1
.max_m
= 0xe;
5078 if (cv
< 0x17 || cv
== 0x1a || cv
== 0x20)
5079 pll_lim
->max_log2p
= 4;
5081 pll_lim
->max_log2p
= 5;
5082 pll_lim
->max_usable_log2p
= pll_lim
->max_log2p
;
5085 if (!pll_lim
->refclk
)
5086 switch (crystal_straps
) {
5088 pll_lim
->refclk
= 13500;
5091 pll_lim
->refclk
= 14318;
5094 pll_lim
->refclk
= 27000;
5096 case (1 << 22 | 1 << 6):
5097 pll_lim
->refclk
= 25000;
5101 NV_DEBUG(dev
, "pll.vco1.minfreq: %d\n", pll_lim
->vco1
.minfreq
);
5102 NV_DEBUG(dev
, "pll.vco1.maxfreq: %d\n", pll_lim
->vco1
.maxfreq
);
5103 NV_DEBUG(dev
, "pll.vco1.min_inputfreq: %d\n", pll_lim
->vco1
.min_inputfreq
);
5104 NV_DEBUG(dev
, "pll.vco1.max_inputfreq: %d\n", pll_lim
->vco1
.max_inputfreq
);
5105 NV_DEBUG(dev
, "pll.vco1.min_n: %d\n", pll_lim
->vco1
.min_n
);
5106 NV_DEBUG(dev
, "pll.vco1.max_n: %d\n", pll_lim
->vco1
.max_n
);
5107 NV_DEBUG(dev
, "pll.vco1.min_m: %d\n", pll_lim
->vco1
.min_m
);
5108 NV_DEBUG(dev
, "pll.vco1.max_m: %d\n", pll_lim
->vco1
.max_m
);
5109 if (pll_lim
->vco2
.maxfreq
) {
5110 NV_DEBUG(dev
, "pll.vco2.minfreq: %d\n", pll_lim
->vco2
.minfreq
);
5111 NV_DEBUG(dev
, "pll.vco2.maxfreq: %d\n", pll_lim
->vco2
.maxfreq
);
5112 NV_DEBUG(dev
, "pll.vco2.min_inputfreq: %d\n", pll_lim
->vco2
.min_inputfreq
);
5113 NV_DEBUG(dev
, "pll.vco2.max_inputfreq: %d\n", pll_lim
->vco2
.max_inputfreq
);
5114 NV_DEBUG(dev
, "pll.vco2.min_n: %d\n", pll_lim
->vco2
.min_n
);
5115 NV_DEBUG(dev
, "pll.vco2.max_n: %d\n", pll_lim
->vco2
.max_n
);
5116 NV_DEBUG(dev
, "pll.vco2.min_m: %d\n", pll_lim
->vco2
.min_m
);
5117 NV_DEBUG(dev
, "pll.vco2.max_m: %d\n", pll_lim
->vco2
.max_m
);
5119 if (!pll_lim
->max_p
) {
5120 NV_DEBUG(dev
, "pll.max_log2p: %d\n", pll_lim
->max_log2p
);
5121 NV_DEBUG(dev
, "pll.log2p_bias: %d\n", pll_lim
->log2p_bias
);
5123 NV_DEBUG(dev
, "pll.min_p: %d\n", pll_lim
->min_p
);
5124 NV_DEBUG(dev
, "pll.max_p: %d\n", pll_lim
->max_p
);
5126 NV_DEBUG(dev
, "pll.refclk: %d\n", pll_lim
->refclk
);
5131 static void parse_bios_version(struct drm_device
*dev
, struct nvbios
*bios
, uint16_t offset
)
5134 * offset + 0 (8 bits): Micro version
5135 * offset + 1 (8 bits): Minor version
5136 * offset + 2 (8 bits): Chip version
5137 * offset + 3 (8 bits): Major version
5140 bios
->major_version
= bios
->data
[offset
+ 3];
5141 bios
->chip_version
= bios
->data
[offset
+ 2];
5142 NV_TRACE(dev
, "Bios version %02x.%02x.%02x.%02x\n",
5143 bios
->data
[offset
+ 3], bios
->data
[offset
+ 2],
5144 bios
->data
[offset
+ 1], bios
->data
[offset
]);
5147 static void parse_script_table_pointers(struct nvbios
*bios
, uint16_t offset
)
5150 * Parses the init table segment for pointers used in script execution.
5152 * offset + 0 (16 bits): init script tables pointer
5153 * offset + 2 (16 bits): macro index table pointer
5154 * offset + 4 (16 bits): macro table pointer
5155 * offset + 6 (16 bits): condition table pointer
5156 * offset + 8 (16 bits): io condition table pointer
5157 * offset + 10 (16 bits): io flag condition table pointer
5158 * offset + 12 (16 bits): init function table pointer
5161 bios
->init_script_tbls_ptr
= ROM16(bios
->data
[offset
]);
5162 bios
->macro_index_tbl_ptr
= ROM16(bios
->data
[offset
+ 2]);
5163 bios
->macro_tbl_ptr
= ROM16(bios
->data
[offset
+ 4]);
5164 bios
->condition_tbl_ptr
= ROM16(bios
->data
[offset
+ 6]);
5165 bios
->io_condition_tbl_ptr
= ROM16(bios
->data
[offset
+ 8]);
5166 bios
->io_flag_condition_tbl_ptr
= ROM16(bios
->data
[offset
+ 10]);
5167 bios
->init_function_tbl_ptr
= ROM16(bios
->data
[offset
+ 12]);
5170 static int parse_bit_A_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5173 * Parses the load detect values for g80 cards.
5175 * offset + 0 (16 bits): loadval table pointer
5178 uint16_t load_table_ptr
;
5179 uint8_t version
, headerlen
, entrylen
, num_entries
;
5181 if (bitentry
->length
!= 3) {
5182 NV_ERROR(dev
, "Do not understand BIT A table\n");
5186 load_table_ptr
= ROM16(bios
->data
[bitentry
->offset
]);
5188 if (load_table_ptr
== 0x0) {
5189 NV_ERROR(dev
, "Pointer to BIT loadval table invalid\n");
5193 version
= bios
->data
[load_table_ptr
];
5195 if (version
!= 0x10) {
5196 NV_ERROR(dev
, "BIT loadval table version %d.%d not supported\n",
5197 version
>> 4, version
& 0xF);
5201 headerlen
= bios
->data
[load_table_ptr
+ 1];
5202 entrylen
= bios
->data
[load_table_ptr
+ 2];
5203 num_entries
= bios
->data
[load_table_ptr
+ 3];
5205 if (headerlen
!= 4 || entrylen
!= 4 || num_entries
!= 2) {
5206 NV_ERROR(dev
, "Do not understand BIT loadval table\n");
5210 /* First entry is normal dac, 2nd tv-out perhaps? */
5211 bios
->dactestval
= ROM32(bios
->data
[load_table_ptr
+ headerlen
]) & 0x3ff;
5216 static int parse_bit_C_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5219 * offset + 8 (16 bits): PLL limits table pointer
5221 * There's more in here, but that's unknown.
5224 if (bitentry
->length
< 10) {
5225 NV_ERROR(dev
, "Do not understand BIT C table\n");
5229 bios
->pll_limit_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 8]);
5234 static int parse_bit_display_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5237 * Parses the flat panel table segment that the bit entry points to.
5238 * Starting at bitentry->offset:
5240 * offset + 0 (16 bits): ??? table pointer - seems to have 18 byte
5241 * records beginning with a freq.
5242 * offset + 2 (16 bits): mode table pointer
5245 if (bitentry
->length
!= 4) {
5246 NV_ERROR(dev
, "Do not understand BIT display table\n");
5250 bios
->fp
.fptablepointer
= ROM16(bios
->data
[bitentry
->offset
+ 2]);
5255 static int parse_bit_init_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5258 * Parses the init table segment that the bit entry points to.
5260 * See parse_script_table_pointers for layout
5263 if (bitentry
->length
< 14) {
5264 NV_ERROR(dev
, "Do not understand init table\n");
5268 parse_script_table_pointers(bios
, bitentry
->offset
);
5270 if (bitentry
->length
>= 16)
5271 bios
->some_script_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 14]);
5272 if (bitentry
->length
>= 18)
5273 bios
->init96_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 16]);
5278 static int parse_bit_i_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5281 * BIT 'i' (info?) table
5283 * offset + 0 (32 bits): BIOS version dword (as in B table)
5284 * offset + 5 (8 bits): BIOS feature byte (same as for BMP?)
5285 * offset + 13 (16 bits): pointer to table containing DAC load
5286 * detection comparison values
5288 * There's other things in the table, purpose unknown
5291 uint16_t daccmpoffset
;
5292 uint8_t dacver
, dacheaderlen
;
5294 if (bitentry
->length
< 6) {
5295 NV_ERROR(dev
, "BIT i table too short for needed information\n");
5299 parse_bios_version(dev
, bios
, bitentry
->offset
);
5302 * bit 4 seems to indicate a mobile bios (doesn't suffer from BMP's
5303 * Quadro identity crisis), other bits possibly as for BMP feature byte
5305 bios
->feature_byte
= bios
->data
[bitentry
->offset
+ 5];
5306 bios
->is_mobile
= bios
->feature_byte
& FEATURE_MOBILE
;
5308 if (bitentry
->length
< 15) {
5309 NV_WARN(dev
, "BIT i table not long enough for DAC load "
5310 "detection comparison table\n");
5314 daccmpoffset
= ROM16(bios
->data
[bitentry
->offset
+ 13]);
5316 /* doesn't exist on g80 */
5321 * The first value in the table, following the header, is the
5322 * comparison value, the second entry is a comparison value for
5323 * TV load detection.
5326 dacver
= bios
->data
[daccmpoffset
];
5327 dacheaderlen
= bios
->data
[daccmpoffset
+ 1];
5329 if (dacver
!= 0x00 && dacver
!= 0x10) {
5330 NV_WARN(dev
, "DAC load detection comparison table version "
5331 "%d.%d not known\n", dacver
>> 4, dacver
& 0xf);
5335 bios
->dactestval
= ROM32(bios
->data
[daccmpoffset
+ dacheaderlen
]);
5336 bios
->tvdactestval
= ROM32(bios
->data
[daccmpoffset
+ dacheaderlen
+ 4]);
5341 static int parse_bit_lvds_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5344 * Parses the LVDS table segment that the bit entry points to.
5345 * Starting at bitentry->offset:
5347 * offset + 0 (16 bits): LVDS strap xlate table pointer
5350 if (bitentry
->length
!= 2) {
5351 NV_ERROR(dev
, "Do not understand BIT LVDS table\n");
5356 * No idea if it's still called the LVDS manufacturer table, but
5357 * the concept's close enough.
5359 bios
->fp
.lvdsmanufacturerpointer
= ROM16(bios
->data
[bitentry
->offset
]);
5365 parse_bit_M_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
,
5366 struct bit_entry
*bitentry
)
5369 * offset + 2 (8 bits): number of options in an
5370 * INIT_RAM_RESTRICT_ZM_REG_GROUP opcode option set
5371 * offset + 3 (16 bits): pointer to strap xlate table for RAM
5372 * restrict option selection
5374 * There's a bunch of bits in this table other than the RAM restrict
5375 * stuff that we don't use - their use currently unknown
5379 * Older bios versions don't have a sufficiently long table for
5382 if (bitentry
->length
< 0x5)
5385 if (bitentry
->version
< 2) {
5386 bios
->ram_restrict_group_count
= bios
->data
[bitentry
->offset
+ 2];
5387 bios
->ram_restrict_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 3]);
5389 bios
->ram_restrict_group_count
= bios
->data
[bitentry
->offset
+ 0];
5390 bios
->ram_restrict_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 1]);
5396 static int parse_bit_tmds_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5399 * Parses the pointer to the TMDS table
5401 * Starting at bitentry->offset:
5403 * offset + 0 (16 bits): TMDS table pointer
5405 * The TMDS table is typically found just before the DCB table, with a
5406 * characteristic signature of 0x11,0x13 (1.1 being version, 0x13 being
5409 * At offset +7 is a pointer to a script, which I don't know how to
5411 * At offset +9 is a pointer to another script, likewise
5412 * Offset +11 has a pointer to a table where the first word is a pxclk
5413 * frequency and the second word a pointer to a script, which should be
5414 * run if the comparison pxclk frequency is less than the pxclk desired.
5415 * This repeats for decreasing comparison frequencies
5416 * Offset +13 has a pointer to a similar table
5417 * The selection of table (and possibly +7/+9 script) is dictated by
5418 * "or" from the DCB.
5421 uint16_t tmdstableptr
, script1
, script2
;
5423 if (bitentry
->length
!= 2) {
5424 NV_ERROR(dev
, "Do not understand BIT TMDS table\n");
5428 tmdstableptr
= ROM16(bios
->data
[bitentry
->offset
]);
5429 if (!tmdstableptr
) {
5430 NV_ERROR(dev
, "Pointer to TMDS table invalid\n");
5434 NV_INFO(dev
, "TMDS table version %d.%d\n",
5435 bios
->data
[tmdstableptr
] >> 4, bios
->data
[tmdstableptr
] & 0xf);
5437 /* nv50+ has v2.0, but we don't parse it atm */
5438 if (bios
->data
[tmdstableptr
] != 0x11)
5442 * These two scripts are odd: they don't seem to get run even when
5443 * they are not stubbed.
5445 script1
= ROM16(bios
->data
[tmdstableptr
+ 7]);
5446 script2
= ROM16(bios
->data
[tmdstableptr
+ 9]);
5447 if (bios
->data
[script1
] != 'q' || bios
->data
[script2
] != 'q')
5448 NV_WARN(dev
, "TMDS table script pointers not stubbed\n");
5450 bios
->tmds
.output0_script_ptr
= ROM16(bios
->data
[tmdstableptr
+ 11]);
5451 bios
->tmds
.output1_script_ptr
= ROM16(bios
->data
[tmdstableptr
+ 13]);
5457 parse_bit_U_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
,
5458 struct bit_entry
*bitentry
)
5461 * Parses the pointer to the G80 output script tables
5463 * Starting at bitentry->offset:
5465 * offset + 0 (16 bits): output script table pointer
5468 uint16_t outputscripttableptr
;
5470 if (bitentry
->length
!= 3) {
5471 NV_ERROR(dev
, "Do not understand BIT U table\n");
5475 outputscripttableptr
= ROM16(bios
->data
[bitentry
->offset
]);
5476 bios
->display
.script_table_ptr
= outputscripttableptr
;
5481 parse_bit_displayport_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
,
5482 struct bit_entry
*bitentry
)
5484 bios
->display
.dp_table_ptr
= ROM16(bios
->data
[bitentry
->offset
]);
5490 int (* const parse_fn
)(struct drm_device
*, struct nvbios
*, struct bit_entry
*);
5493 #define BIT_TABLE(id, funcid) ((struct bit_table){ id, parse_bit_##funcid##_tbl_entry })
5496 bit_table(struct drm_device
*dev
, u8 id
, struct bit_entry
*bit
)
5498 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
5499 struct nvbios
*bios
= &dev_priv
->vbios
;
5502 entries
= bios
->data
[bios
->offset
+ 10];
5503 entry
= &bios
->data
[bios
->offset
+ 12];
5505 if (entry
[0] == id
) {
5507 bit
->version
= entry
[1];
5508 bit
->length
= ROM16(entry
[2]);
5509 bit
->offset
= ROM16(entry
[4]);
5510 bit
->data
= ROMPTR(bios
, entry
[4]);
5514 entry
+= bios
->data
[bios
->offset
+ 9];
5521 parse_bit_table(struct nvbios
*bios
, const uint16_t bitoffset
,
5522 struct bit_table
*table
)
5524 struct drm_device
*dev
= bios
->dev
;
5525 struct bit_entry bitentry
;
5527 if (bit_table(dev
, table
->id
, &bitentry
) == 0)
5528 return table
->parse_fn(dev
, bios
, &bitentry
);
5530 NV_INFO(dev
, "BIT table '%c' not found\n", table
->id
);
5535 parse_bit_structure(struct nvbios
*bios
, const uint16_t bitoffset
)
5540 * The only restriction on parsing order currently is having 'i' first
5541 * for use of bios->*_version or bios->feature_byte while parsing;
5542 * functions shouldn't be actually *doing* anything apart from pulling
5543 * data from the image into the bios struct, thus no interdependencies
5545 ret
= parse_bit_table(bios
, bitoffset
, &BIT_TABLE('i', i
));
5546 if (ret
) /* info? */
5548 if (bios
->major_version
>= 0x60) /* g80+ */
5549 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('A', A
));
5550 ret
= parse_bit_table(bios
, bitoffset
, &BIT_TABLE('C', C
));
5553 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('D', display
));
5554 ret
= parse_bit_table(bios
, bitoffset
, &BIT_TABLE('I', init
));
5557 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('M', M
)); /* memory? */
5558 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('L', lvds
));
5559 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('T', tmds
));
5560 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('U', U
));
5561 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('d', displayport
));
5566 static int parse_bmp_structure(struct drm_device
*dev
, struct nvbios
*bios
, unsigned int offset
)
5569 * Parses the BMP structure for useful things, but does not act on them
5571 * offset + 5: BMP major version
5572 * offset + 6: BMP minor version
5573 * offset + 9: BMP feature byte
5574 * offset + 10: BCD encoded BIOS version
5576 * offset + 18: init script table pointer (for bios versions < 5.10h)
5577 * offset + 20: extra init script table pointer (for bios
5580 * offset + 24: memory init table pointer (used on early bios versions)
5581 * offset + 26: SDR memory sequencing setup data table
5582 * offset + 28: DDR memory sequencing setup data table
5584 * offset + 54: index of I2C CRTC pair to use for CRT output
5585 * offset + 55: index of I2C CRTC pair to use for TV output
5586 * offset + 56: index of I2C CRTC pair to use for flat panel output
5587 * offset + 58: write CRTC index for I2C pair 0
5588 * offset + 59: read CRTC index for I2C pair 0
5589 * offset + 60: write CRTC index for I2C pair 1
5590 * offset + 61: read CRTC index for I2C pair 1
5592 * offset + 67: maximum internal PLL frequency (single stage PLL)
5593 * offset + 71: minimum internal PLL frequency (single stage PLL)
5595 * offset + 75: script table pointers, as described in
5596 * parse_script_table_pointers
5598 * offset + 89: TMDS single link output A table pointer
5599 * offset + 91: TMDS single link output B table pointer
5600 * offset + 95: LVDS single link output A table pointer
5601 * offset + 105: flat panel timings table pointer
5602 * offset + 107: flat panel strapping translation table pointer
5603 * offset + 117: LVDS manufacturer panel config table pointer
5604 * offset + 119: LVDS manufacturer strapping translation table pointer
5606 * offset + 142: PLL limits table pointer
5608 * offset + 156: minimum pixel clock for LVDS dual link
5611 uint8_t *bmp
= &bios
->data
[offset
], bmp_version_major
, bmp_version_minor
;
5613 uint16_t legacy_scripts_offset
, legacy_i2c_offset
;
5615 /* load needed defaults in case we can't parse this info */
5616 bios
->dcb
.i2c
[0].write
= NV_CIO_CRE_DDC_WR__INDEX
;
5617 bios
->dcb
.i2c
[0].read
= NV_CIO_CRE_DDC_STATUS__INDEX
;
5618 bios
->dcb
.i2c
[1].write
= NV_CIO_CRE_DDC0_WR__INDEX
;
5619 bios
->dcb
.i2c
[1].read
= NV_CIO_CRE_DDC0_STATUS__INDEX
;
5620 bios
->digital_min_front_porch
= 0x4b;
5621 bios
->fmaxvco
= 256000;
5622 bios
->fminvco
= 128000;
5623 bios
->fp
.duallink_transition_clk
= 90000;
5625 bmp_version_major
= bmp
[5];
5626 bmp_version_minor
= bmp
[6];
5628 NV_TRACE(dev
, "BMP version %d.%d\n",
5629 bmp_version_major
, bmp_version_minor
);
5632 * Make sure that 0x36 is blank and can't be mistaken for a DCB
5633 * pointer on early versions
5635 if (bmp_version_major
< 5)
5636 *(uint16_t *)&bios
->data
[0x36] = 0;
5639 * Seems that the minor version was 1 for all major versions prior
5640 * to 5. Version 6 could theoretically exist, but I suspect BIT
5643 if ((bmp_version_major
< 5 && bmp_version_minor
!= 1) || bmp_version_major
> 5) {
5644 NV_ERROR(dev
, "You have an unsupported BMP version. "
5645 "Please send in your bios\n");
5649 if (bmp_version_major
== 0)
5650 /* nothing that's currently useful in this version */
5652 else if (bmp_version_major
== 1)
5653 bmplength
= 44; /* exact for 1.01 */
5654 else if (bmp_version_major
== 2)
5655 bmplength
= 48; /* exact for 2.01 */
5656 else if (bmp_version_major
== 3)
5658 /* guessed - mem init tables added in this version */
5659 else if (bmp_version_major
== 4 || bmp_version_minor
< 0x1)
5660 /* don't know if 5.0 exists... */
5662 /* guessed - BMP I2C indices added in version 4*/
5663 else if (bmp_version_minor
< 0x6)
5664 bmplength
= 67; /* exact for 5.01 */
5665 else if (bmp_version_minor
< 0x10)
5666 bmplength
= 75; /* exact for 5.06 */
5667 else if (bmp_version_minor
== 0x10)
5668 bmplength
= 89; /* exact for 5.10h */
5669 else if (bmp_version_minor
< 0x14)
5670 bmplength
= 118; /* exact for 5.11h */
5671 else if (bmp_version_minor
< 0x24)
5673 * Not sure of version where pll limits came in;
5674 * certainly exist by 0x24 though.
5676 /* length not exact: this is long enough to get lvds members */
5678 else if (bmp_version_minor
< 0x27)
5680 * Length not exact: this is long enough to get pll limit
5686 * Length not exact: this is long enough to get dual link
5692 if (nv_cksum(bmp
, 8)) {
5693 NV_ERROR(dev
, "Bad BMP checksum\n");
5698 * Bit 4 seems to indicate either a mobile bios or a quadro card --
5699 * mobile behaviour consistent (nv11+), quadro only seen nv18gl-nv36gl
5700 * (not nv10gl), bit 5 that the flat panel tables are present, and
5703 bios
->feature_byte
= bmp
[9];
5705 parse_bios_version(dev
, bios
, offset
+ 10);
5707 if (bmp_version_major
< 5 || bmp_version_minor
< 0x10)
5708 bios
->old_style_init
= true;
5709 legacy_scripts_offset
= 18;
5710 if (bmp_version_major
< 2)
5711 legacy_scripts_offset
-= 4;
5712 bios
->init_script_tbls_ptr
= ROM16(bmp
[legacy_scripts_offset
]);
5713 bios
->extra_init_script_tbl_ptr
= ROM16(bmp
[legacy_scripts_offset
+ 2]);
5715 if (bmp_version_major
> 2) { /* appears in BMP 3 */
5716 bios
->legacy
.mem_init_tbl_ptr
= ROM16(bmp
[24]);
5717 bios
->legacy
.sdr_seq_tbl_ptr
= ROM16(bmp
[26]);
5718 bios
->legacy
.ddr_seq_tbl_ptr
= ROM16(bmp
[28]);
5721 legacy_i2c_offset
= 0x48; /* BMP version 2 & 3 */
5723 legacy_i2c_offset
= offset
+ 54;
5724 bios
->legacy
.i2c_indices
.crt
= bios
->data
[legacy_i2c_offset
];
5725 bios
->legacy
.i2c_indices
.tv
= bios
->data
[legacy_i2c_offset
+ 1];
5726 bios
->legacy
.i2c_indices
.panel
= bios
->data
[legacy_i2c_offset
+ 2];
5727 if (bios
->data
[legacy_i2c_offset
+ 4])
5728 bios
->dcb
.i2c
[0].write
= bios
->data
[legacy_i2c_offset
+ 4];
5729 if (bios
->data
[legacy_i2c_offset
+ 5])
5730 bios
->dcb
.i2c
[0].read
= bios
->data
[legacy_i2c_offset
+ 5];
5731 if (bios
->data
[legacy_i2c_offset
+ 6])
5732 bios
->dcb
.i2c
[1].write
= bios
->data
[legacy_i2c_offset
+ 6];
5733 if (bios
->data
[legacy_i2c_offset
+ 7])
5734 bios
->dcb
.i2c
[1].read
= bios
->data
[legacy_i2c_offset
+ 7];
5736 if (bmplength
> 74) {
5737 bios
->fmaxvco
= ROM32(bmp
[67]);
5738 bios
->fminvco
= ROM32(bmp
[71]);
5741 parse_script_table_pointers(bios
, offset
+ 75);
5742 if (bmplength
> 94) {
5743 bios
->tmds
.output0_script_ptr
= ROM16(bmp
[89]);
5744 bios
->tmds
.output1_script_ptr
= ROM16(bmp
[91]);
5746 * Never observed in use with lvds scripts, but is reused for
5747 * 18/24 bit panel interface default for EDID equipped panels
5748 * (if_is_24bit not set directly to avoid any oscillation).
5750 bios
->legacy
.lvds_single_a_script_ptr
= ROM16(bmp
[95]);
5752 if (bmplength
> 108) {
5753 bios
->fp
.fptablepointer
= ROM16(bmp
[105]);
5754 bios
->fp
.fpxlatetableptr
= ROM16(bmp
[107]);
5755 bios
->fp
.xlatwidth
= 1;
5757 if (bmplength
> 120) {
5758 bios
->fp
.lvdsmanufacturerpointer
= ROM16(bmp
[117]);
5759 bios
->fp
.fpxlatemanufacturertableptr
= ROM16(bmp
[119]);
5761 if (bmplength
> 143)
5762 bios
->pll_limit_tbl_ptr
= ROM16(bmp
[142]);
5764 if (bmplength
> 157)
5765 bios
->fp
.duallink_transition_clk
= ROM16(bmp
[156]) * 10;
5770 static uint16_t findstr(uint8_t *data
, int n
, const uint8_t *str
, int len
)
5774 for (i
= 0; i
<= (n
- len
); i
++) {
5775 for (j
= 0; j
< len
; j
++)
5776 if (data
[i
+ j
] != str
[j
])
5785 static struct dcb_gpio_entry
*
5786 new_gpio_entry(struct nvbios
*bios
)
5788 struct drm_device
*dev
= bios
->dev
;
5789 struct dcb_gpio_table
*gpio
= &bios
->dcb
.gpio
;
5791 if (gpio
->entries
>= DCB_MAX_NUM_GPIO_ENTRIES
) {
5792 NV_ERROR(dev
, "exceeded maximum number of gpio entries!!\n");
5796 return &gpio
->entry
[gpio
->entries
++];
5799 struct dcb_gpio_entry
*
5800 nouveau_bios_gpio_entry(struct drm_device
*dev
, enum dcb_gpio_tag tag
)
5802 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
5803 struct nvbios
*bios
= &dev_priv
->vbios
;
5806 for (i
= 0; i
< bios
->dcb
.gpio
.entries
; i
++) {
5807 if (bios
->dcb
.gpio
.entry
[i
].tag
!= tag
)
5810 return &bios
->dcb
.gpio
.entry
[i
];
5817 parse_dcb_gpio_table(struct nvbios
*bios
)
5819 struct drm_device
*dev
= bios
->dev
;
5820 struct dcb_gpio_entry
*e
;
5821 u8 headerlen
, entries
, recordlen
;
5822 u8
*dcb
, *gpio
= NULL
, *entry
;
5825 dcb
= ROMPTR(bios
, bios
->data
[0x36]);
5826 if (dcb
[0] >= 0x30) {
5827 gpio
= ROMPTR(bios
, dcb
[10]);
5831 headerlen
= gpio
[1];
5833 recordlen
= gpio
[3];
5835 if (dcb
[0] >= 0x22 && dcb
[-1] >= 0x13) {
5836 gpio
= ROMPTR(bios
, dcb
[-15]);
5842 recordlen
= gpio
[1];
5844 if (dcb
[0] >= 0x22) {
5845 /* No GPIO table present, parse the TVDAC GPIO data. */
5846 uint8_t *tvdac_gpio
= &dcb
[-5];
5848 if (tvdac_gpio
[0] & 1) {
5849 e
= new_gpio_entry(bios
);
5850 e
->tag
= DCB_GPIO_TVDAC0
;
5851 e
->line
= tvdac_gpio
[1] >> 4;
5852 e
->invert
= tvdac_gpio
[0] & 2;
5857 NV_DEBUG(dev
, "no/unknown gpio table on DCB 0x%02x\n", dcb
[0]);
5861 entry
= gpio
+ headerlen
;
5862 for (i
= 0; i
< entries
; i
++, entry
+= recordlen
) {
5863 e
= new_gpio_entry(bios
);
5867 if (gpio
[0] < 0x40) {
5868 e
->entry
= ROM16(entry
[0]);
5869 e
->tag
= (e
->entry
& 0x07e0) >> 5;
5870 if (e
->tag
== 0x3f) {
5871 bios
->dcb
.gpio
.entries
--;
5875 e
->line
= (e
->entry
& 0x001f);
5876 e
->invert
= ((e
->entry
& 0xf800) >> 11) != 4;
5878 e
->entry
= ROM32(entry
[0]);
5879 e
->tag
= (e
->entry
& 0x0000ff00) >> 8;
5880 if (e
->tag
== 0xff) {
5881 bios
->dcb
.gpio
.entries
--;
5885 e
->line
= (e
->entry
& 0x0000001f) >> 0;
5886 e
->state_default
= (e
->entry
& 0x01000000) >> 24;
5887 e
->state
[0] = (e
->entry
& 0x18000000) >> 27;
5888 e
->state
[1] = (e
->entry
& 0x60000000) >> 29;
5893 /* Apple iMac G4 NV18 */
5894 if (nv_match_device(dev
, 0x0189, 0x10de, 0x0010)) {
5895 e
= new_gpio_entry(bios
);
5897 e
->tag
= DCB_GPIO_TVDAC0
;
5903 struct dcb_connector_table_entry
*
5904 nouveau_bios_connector_entry(struct drm_device
*dev
, int index
)
5906 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
5907 struct nvbios
*bios
= &dev_priv
->vbios
;
5908 struct dcb_connector_table_entry
*cte
;
5910 if (index
>= bios
->dcb
.connector
.entries
)
5913 cte
= &bios
->dcb
.connector
.entry
[index
];
5914 if (cte
->type
== 0xff)
5920 static enum dcb_connector_type
5921 divine_connector_type(struct nvbios
*bios
, int index
)
5923 struct dcb_table
*dcb
= &bios
->dcb
;
5924 unsigned encoders
= 0, type
= DCB_CONNECTOR_NONE
;
5927 for (i
= 0; i
< dcb
->entries
; i
++) {
5928 if (dcb
->entry
[i
].connector
== index
)
5929 encoders
|= (1 << dcb
->entry
[i
].type
);
5932 if (encoders
& (1 << OUTPUT_DP
)) {
5933 if (encoders
& (1 << OUTPUT_TMDS
))
5934 type
= DCB_CONNECTOR_DP
;
5936 type
= DCB_CONNECTOR_eDP
;
5938 if (encoders
& (1 << OUTPUT_TMDS
)) {
5939 if (encoders
& (1 << OUTPUT_ANALOG
))
5940 type
= DCB_CONNECTOR_DVI_I
;
5942 type
= DCB_CONNECTOR_DVI_D
;
5944 if (encoders
& (1 << OUTPUT_ANALOG
)) {
5945 type
= DCB_CONNECTOR_VGA
;
5947 if (encoders
& (1 << OUTPUT_LVDS
)) {
5948 type
= DCB_CONNECTOR_LVDS
;
5950 if (encoders
& (1 << OUTPUT_TV
)) {
5951 type
= DCB_CONNECTOR_TV_0
;
5958 apply_dcb_connector_quirks(struct nvbios
*bios
, int idx
)
5960 struct dcb_connector_table_entry
*cte
= &bios
->dcb
.connector
.entry
[idx
];
5961 struct drm_device
*dev
= bios
->dev
;
5963 /* Gigabyte NX85T */
5964 if (nv_match_device(dev
, 0x0421, 0x1458, 0x344c)) {
5965 if (cte
->type
== DCB_CONNECTOR_HDMI_1
)
5966 cte
->type
= DCB_CONNECTOR_DVI_I
;
5970 static const u8 hpd_gpio
[16] = {
5971 0xff, 0x07, 0x08, 0xff, 0xff, 0x51, 0x52, 0xff,
5972 0xff, 0xff, 0xff, 0xff, 0xff, 0x5e, 0x5f, 0x60,
5976 parse_dcb_connector_table(struct nvbios
*bios
)
5978 struct drm_device
*dev
= bios
->dev
;
5979 struct dcb_connector_table
*ct
= &bios
->dcb
.connector
;
5980 struct dcb_connector_table_entry
*cte
;
5981 uint8_t *conntab
= &bios
->data
[bios
->dcb
.connector_table_ptr
];
5985 if (!bios
->dcb
.connector_table_ptr
) {
5986 NV_DEBUG_KMS(dev
, "No DCB connector table present\n");
5990 NV_INFO(dev
, "DCB connector table: VHER 0x%02x %d %d %d\n",
5991 conntab
[0], conntab
[1], conntab
[2], conntab
[3]);
5992 if ((conntab
[0] != 0x30 && conntab
[0] != 0x40) ||
5993 (conntab
[3] != 2 && conntab
[3] != 4)) {
5994 NV_ERROR(dev
, " Unknown! Please report.\n");
5998 ct
->entries
= conntab
[2];
6000 entry
= conntab
+ conntab
[1];
6001 cte
= &ct
->entry
[0];
6002 for (i
= 0; i
< conntab
[2]; i
++, entry
+= conntab
[3], cte
++) {
6004 if (conntab
[3] == 2)
6005 cte
->entry
= ROM16(entry
[0]);
6007 cte
->entry
= ROM32(entry
[0]);
6009 cte
->type
= (cte
->entry
& 0x000000ff) >> 0;
6010 cte
->index2
= (cte
->entry
& 0x00000f00) >> 8;
6012 cte
->gpio_tag
= ffs((cte
->entry
& 0x07033000) >> 12);
6013 cte
->gpio_tag
= hpd_gpio
[cte
->gpio_tag
];
6015 if (cte
->type
== 0xff)
6018 apply_dcb_connector_quirks(bios
, i
);
6020 NV_INFO(dev
, " %d: 0x%08x: type 0x%02x idx %d tag 0x%02x\n",
6021 i
, cte
->entry
, cte
->type
, cte
->index
, cte
->gpio_tag
);
6023 /* check for known types, fallback to guessing the type
6024 * from attached encoders if we hit an unknown.
6026 switch (cte
->type
) {
6027 case DCB_CONNECTOR_VGA
:
6028 case DCB_CONNECTOR_TV_0
:
6029 case DCB_CONNECTOR_TV_1
:
6030 case DCB_CONNECTOR_TV_3
:
6031 case DCB_CONNECTOR_DVI_I
:
6032 case DCB_CONNECTOR_DVI_D
:
6033 case DCB_CONNECTOR_LVDS
:
6034 case DCB_CONNECTOR_LVDS_SPWG
:
6035 case DCB_CONNECTOR_DP
:
6036 case DCB_CONNECTOR_eDP
:
6037 case DCB_CONNECTOR_HDMI_0
:
6038 case DCB_CONNECTOR_HDMI_1
:
6041 cte
->type
= divine_connector_type(bios
, cte
->index
);
6042 NV_WARN(dev
, "unknown type, using 0x%02x\n", cte
->type
);
6046 if (nouveau_override_conntype
) {
6047 int type
= divine_connector_type(bios
, cte
->index
);
6048 if (type
!= cte
->type
)
6049 NV_WARN(dev
, " -> type 0x%02x\n", cte
->type
);
6055 static struct dcb_entry
*new_dcb_entry(struct dcb_table
*dcb
)
6057 struct dcb_entry
*entry
= &dcb
->entry
[dcb
->entries
];
6059 memset(entry
, 0, sizeof(struct dcb_entry
));
6060 entry
->index
= dcb
->entries
++;
6065 static void fabricate_dcb_output(struct dcb_table
*dcb
, int type
, int i2c
,
6068 struct dcb_entry
*entry
= new_dcb_entry(dcb
);
6071 entry
->i2c_index
= i2c
;
6072 entry
->heads
= heads
;
6073 if (type
!= OUTPUT_ANALOG
)
6074 entry
->location
= !DCB_LOC_ON_CHIP
; /* ie OFF CHIP */
6079 parse_dcb20_entry(struct drm_device
*dev
, struct dcb_table
*dcb
,
6080 uint32_t conn
, uint32_t conf
, struct dcb_entry
*entry
)
6082 entry
->type
= conn
& 0xf;
6083 entry
->i2c_index
= (conn
>> 4) & 0xf;
6084 entry
->heads
= (conn
>> 8) & 0xf;
6085 if (dcb
->version
>= 0x40)
6086 entry
->connector
= (conn
>> 12) & 0xf;
6087 entry
->bus
= (conn
>> 16) & 0xf;
6088 entry
->location
= (conn
>> 20) & 0x3;
6089 entry
->or = (conn
>> 24) & 0xf;
6091 switch (entry
->type
) {
6094 * Although the rest of a CRT conf dword is usually
6095 * zeros, mac biosen have stuff there so we must mask
6097 entry
->crtconf
.maxfreq
= (dcb
->version
< 0x30) ?
6098 (conf
& 0xffff) * 10 :
6099 (conf
& 0xff) * 10000;
6105 entry
->lvdsconf
.use_straps_for_mode
= true;
6106 if (dcb
->version
< 0x22) {
6109 * The laptop in bug 14567 lies and claims to not use
6110 * straps when it does, so assume all DCB 2.0 laptops
6111 * use straps, until a broken EDID using one is produced
6113 entry
->lvdsconf
.use_straps_for_mode
= true;
6115 * Both 0x4 and 0x8 show up in v2.0 tables; assume they
6116 * mean the same thing (probably wrong, but might work)
6118 if (conf
& 0x4 || conf
& 0x8)
6119 entry
->lvdsconf
.use_power_scripts
= true;
6123 entry
->lvdsconf
.use_acpi_for_edid
= true;
6125 entry
->lvdsconf
.use_power_scripts
= true;
6126 entry
->lvdsconf
.sor
.link
= (conf
& 0x00000030) >> 4;
6130 * Until we even try to use these on G8x, it's
6131 * useless reporting unknown bits. They all are.
6133 if (dcb
->version
>= 0x40)
6136 NV_ERROR(dev
, "Unknown LVDS configuration bits, "
6143 if (dcb
->version
>= 0x30)
6144 entry
->tvconf
.has_component_output
= conf
& (0x8 << 4);
6146 entry
->tvconf
.has_component_output
= false;
6151 entry
->dpconf
.sor
.link
= (conf
& 0x00000030) >> 4;
6152 entry
->dpconf
.link_bw
= (conf
& 0x00e00000) >> 21;
6153 switch ((conf
& 0x0f000000) >> 24) {
6155 entry
->dpconf
.link_nr
= 4;
6158 entry
->dpconf
.link_nr
= 2;
6161 entry
->dpconf
.link_nr
= 1;
6166 if (dcb
->version
>= 0x40)
6167 entry
->tmdsconf
.sor
.link
= (conf
& 0x00000030) >> 4;
6168 else if (dcb
->version
>= 0x30)
6169 entry
->tmdsconf
.slave_addr
= (conf
& 0x00000700) >> 8;
6170 else if (dcb
->version
>= 0x22)
6171 entry
->tmdsconf
.slave_addr
= (conf
& 0x00000070) >> 4;
6175 /* weird g80 mobile type that "nv" treats as a terminator */
6182 if (dcb
->version
< 0x40) {
6183 /* Normal entries consist of a single bit, but dual link has
6184 * the next most significant bit set too
6186 entry
->duallink_possible
=
6187 ((1 << (ffs(entry
->or) - 1)) * 3 == entry
->or);
6189 entry
->duallink_possible
= (entry
->sorconf
.link
== 3);
6192 /* unsure what DCB version introduces this, 3.0? */
6193 if (conf
& 0x100000)
6194 entry
->i2c_upper_default
= true;
6200 parse_dcb15_entry(struct drm_device
*dev
, struct dcb_table
*dcb
,
6201 uint32_t conn
, uint32_t conf
, struct dcb_entry
*entry
)
6203 switch (conn
& 0x0000000f) {
6205 entry
->type
= OUTPUT_ANALOG
;
6208 entry
->type
= OUTPUT_TV
;
6213 entry
->type
= OUTPUT_LVDS
;
6215 entry
->type
= OUTPUT_TMDS
;
6218 entry
->type
= OUTPUT_LVDS
;
6221 NV_ERROR(dev
, "Unknown DCB type %d\n", conn
& 0x0000000f);
6225 entry
->i2c_index
= (conn
& 0x0003c000) >> 14;
6226 entry
->heads
= ((conn
& 0x001c0000) >> 18) + 1;
6227 entry
->or = entry
->heads
; /* same as heads, hopefully safe enough */
6228 entry
->location
= (conn
& 0x01e00000) >> 21;
6229 entry
->bus
= (conn
& 0x0e000000) >> 25;
6230 entry
->duallink_possible
= false;
6232 switch (entry
->type
) {
6234 entry
->crtconf
.maxfreq
= (conf
& 0xffff) * 10;
6237 entry
->tvconf
.has_component_output
= false;
6240 if ((conn
& 0x00003f00) >> 8 != 0x10)
6241 entry
->lvdsconf
.use_straps_for_mode
= true;
6242 entry
->lvdsconf
.use_power_scripts
= true;
6251 static bool parse_dcb_entry(struct drm_device
*dev
, struct dcb_table
*dcb
,
6252 uint32_t conn
, uint32_t conf
)
6254 struct dcb_entry
*entry
= new_dcb_entry(dcb
);
6257 if (dcb
->version
>= 0x20)
6258 ret
= parse_dcb20_entry(dev
, dcb
, conn
, conf
, entry
);
6260 ret
= parse_dcb15_entry(dev
, dcb
, conn
, conf
, entry
);
6264 read_dcb_i2c_entry(dev
, dcb
->version
, dcb
->i2c_table
,
6265 entry
->i2c_index
, &dcb
->i2c
[entry
->i2c_index
]);
6271 void merge_like_dcb_entries(struct drm_device
*dev
, struct dcb_table
*dcb
)
6274 * DCB v2.0 lists each output combination separately.
6275 * Here we merge compatible entries to have fewer outputs, with
6279 int i
, newentries
= 0;
6281 for (i
= 0; i
< dcb
->entries
; i
++) {
6282 struct dcb_entry
*ient
= &dcb
->entry
[i
];
6285 for (j
= i
+ 1; j
< dcb
->entries
; j
++) {
6286 struct dcb_entry
*jent
= &dcb
->entry
[j
];
6288 if (jent
->type
== 100) /* already merged entry */
6291 /* merge heads field when all other fields the same */
6292 if (jent
->i2c_index
== ient
->i2c_index
&&
6293 jent
->type
== ient
->type
&&
6294 jent
->location
== ient
->location
&&
6295 jent
->or == ient
->or) {
6296 NV_TRACE(dev
, "Merging DCB entries %d and %d\n",
6298 ient
->heads
|= jent
->heads
;
6299 jent
->type
= 100; /* dummy value */
6304 /* Compact entries merged into others out of dcb */
6305 for (i
= 0; i
< dcb
->entries
; i
++) {
6306 if (dcb
->entry
[i
].type
== 100)
6309 if (newentries
!= i
) {
6310 dcb
->entry
[newentries
] = dcb
->entry
[i
];
6311 dcb
->entry
[newentries
].index
= newentries
;
6316 dcb
->entries
= newentries
;
6320 apply_dcb_encoder_quirks(struct drm_device
*dev
, int idx
, u32
*conn
, u32
*conf
)
6322 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6323 struct dcb_table
*dcb
= &dev_priv
->vbios
.dcb
;
6325 /* Dell Precision M6300
6326 * DCB entry 2: 02025312 00000010
6327 * DCB entry 3: 02026312 00000020
6329 * Identical, except apparently a different connector on a
6330 * different SOR link. Not a clue how we're supposed to know
6331 * which one is in use if it even shares an i2c line...
6333 * Ignore the connector on the second SOR link to prevent
6334 * nasty problems until this is sorted (assuming it's not a
6337 if (nv_match_device(dev
, 0x040d, 0x1028, 0x019b)) {
6338 if (*conn
== 0x02026312 && *conf
== 0x00000020)
6344 * DCB reports an LVDS output that should be TMDS:
6345 * DCB entry 1: f2005014 ffffffff
6347 if (nv_match_device(dev
, 0x0201, 0x1462, 0x8851)) {
6348 if (*conn
== 0xf2005014 && *conf
== 0xffffffff) {
6349 fabricate_dcb_output(dcb
, OUTPUT_TMDS
, 1, 1, 1);
6356 * So many things wrong here, replace the entire encoder table..
6358 if (nv_match_device(dev
, 0x0ca3, 0x1682, 0x3003)) {
6360 *conn
= 0x02001300; /* VGA, connector 1 */
6364 *conn
= 0x01010312; /* DVI, connector 0 */
6368 *conn
= 0x01010310; /* VGA, connector 0 */
6372 *conn
= 0x02022362; /* HDMI, connector 2 */
6375 *conn
= 0x0000000e; /* EOL */
6384 fabricate_dcb_encoder_table(struct drm_device
*dev
, struct nvbios
*bios
)
6386 struct dcb_table
*dcb
= &bios
->dcb
;
6387 int all_heads
= (nv_two_heads(dev
) ? 3 : 1);
6390 /* Apple iMac G4 NV17 */
6391 if (of_machine_is_compatible("PowerMac4,5")) {
6392 fabricate_dcb_output(dcb
, OUTPUT_TMDS
, 0, all_heads
, 1);
6393 fabricate_dcb_output(dcb
, OUTPUT_ANALOG
, 1, all_heads
, 2);
6398 /* Make up some sane defaults */
6399 fabricate_dcb_output(dcb
, OUTPUT_ANALOG
, LEGACY_I2C_CRT
, 1, 1);
6401 if (nv04_tv_identify(dev
, bios
->legacy
.i2c_indices
.tv
) >= 0)
6402 fabricate_dcb_output(dcb
, OUTPUT_TV
, LEGACY_I2C_TV
,
6405 else if (bios
->tmds
.output0_script_ptr
||
6406 bios
->tmds
.output1_script_ptr
)
6407 fabricate_dcb_output(dcb
, OUTPUT_TMDS
, LEGACY_I2C_PANEL
,
6412 parse_dcb_table(struct drm_device
*dev
, struct nvbios
*bios
)
6414 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6415 struct dcb_table
*dcb
= &bios
->dcb
;
6416 uint16_t dcbptr
= 0, i2ctabptr
= 0;
6418 uint8_t headerlen
= 0x4, entries
= DCB_MAX_NUM_ENTRIES
;
6419 bool configblock
= true;
6420 int recordlength
= 8, confofs
= 4;
6423 /* get the offset from 0x36 */
6424 if (dev_priv
->card_type
> NV_04
) {
6425 dcbptr
= ROM16(bios
->data
[0x36]);
6426 if (dcbptr
== 0x0000)
6427 NV_WARN(dev
, "No output data (DCB) found in BIOS\n");
6430 /* this situation likely means a really old card, pre DCB */
6431 if (dcbptr
== 0x0) {
6432 fabricate_dcb_encoder_table(dev
, bios
);
6436 dcbtable
= &bios
->data
[dcbptr
];
6438 /* get DCB version */
6439 dcb
->version
= dcbtable
[0];
6440 NV_TRACE(dev
, "Found Display Configuration Block version %d.%d\n",
6441 dcb
->version
>> 4, dcb
->version
& 0xf);
6443 if (dcb
->version
>= 0x20) { /* NV17+ */
6446 if (dcb
->version
>= 0x30) { /* NV40+ */
6447 headerlen
= dcbtable
[1];
6448 entries
= dcbtable
[2];
6449 recordlength
= dcbtable
[3];
6450 i2ctabptr
= ROM16(dcbtable
[4]);
6451 sig
= ROM32(dcbtable
[6]);
6452 dcb
->gpio_table_ptr
= ROM16(dcbtable
[10]);
6453 dcb
->connector_table_ptr
= ROM16(dcbtable
[20]);
6455 i2ctabptr
= ROM16(dcbtable
[2]);
6456 sig
= ROM32(dcbtable
[4]);
6460 if (sig
!= 0x4edcbdcb) {
6461 NV_ERROR(dev
, "Bad Display Configuration Block "
6462 "signature (%08X)\n", sig
);
6465 } else if (dcb
->version
>= 0x15) { /* some NV11 and NV20 */
6466 char sig
[8] = { 0 };
6468 strncpy(sig
, (char *)&dcbtable
[-7], 7);
6469 i2ctabptr
= ROM16(dcbtable
[2]);
6473 if (strcmp(sig
, "DEV_REC")) {
6474 NV_ERROR(dev
, "Bad Display Configuration Block "
6475 "signature (%s)\n", sig
);
6480 * v1.4 (some NV15/16, NV11+) seems the same as v1.5, but always
6481 * has the same single (crt) entry, even when tv-out present, so
6482 * the conclusion is this version cannot really be used.
6483 * v1.2 tables (some NV6/10, and NV15+) normally have the same
6484 * 5 entries, which are not specific to the card and so no use.
6485 * v1.2 does have an I2C table that read_dcb_i2c_table can
6486 * handle, but cards exist (nv11 in #14821) with a bad i2c table
6487 * pointer, so use the indices parsed in parse_bmp_structure.
6488 * v1.1 (NV5+, maybe some NV4) is entirely unhelpful
6490 NV_TRACEWARN(dev
, "No useful information in BIOS output table; "
6491 "adding all possible outputs\n");
6492 fabricate_dcb_encoder_table(dev
, bios
);
6497 NV_WARN(dev
, "No pointer to DCB I2C port table\n");
6499 dcb
->i2c_table
= &bios
->data
[i2ctabptr
];
6500 if (dcb
->version
>= 0x30)
6501 dcb
->i2c_default_indices
= dcb
->i2c_table
[4];
6504 * Parse the "management" I2C bus, used for hardware
6505 * monitoring and some external TMDS transmitters.
6507 if (dcb
->version
>= 0x22) {
6508 int idx
= (dcb
->version
>= 0x40 ?
6509 dcb
->i2c_default_indices
& 0xf :
6512 read_dcb_i2c_entry(dev
, dcb
->version
, dcb
->i2c_table
,
6513 idx
, &dcb
->i2c
[idx
]);
6517 if (entries
> DCB_MAX_NUM_ENTRIES
)
6518 entries
= DCB_MAX_NUM_ENTRIES
;
6520 for (i
= 0; i
< entries
; i
++) {
6521 uint32_t connection
, config
= 0;
6523 connection
= ROM32(dcbtable
[headerlen
+ recordlength
* i
]);
6525 config
= ROM32(dcbtable
[headerlen
+ confofs
+ recordlength
* i
]);
6527 /* seen on an NV11 with DCB v1.5 */
6528 if (connection
== 0x00000000)
6531 /* seen on an NV17 with DCB v2.0 */
6532 if (connection
== 0xffffffff)
6535 if ((connection
& 0x0000000f) == 0x0000000f)
6538 if (!apply_dcb_encoder_quirks(dev
, i
, &connection
, &config
))
6541 NV_TRACEWARN(dev
, "Raw DCB entry %d: %08x %08x\n",
6542 dcb
->entries
, connection
, config
);
6544 if (!parse_dcb_entry(dev
, dcb
, connection
, config
))
6549 * apart for v2.1+ not being known for requiring merging, this
6550 * guarantees dcbent->index is the index of the entry in the rom image
6552 if (dcb
->version
< 0x21)
6553 merge_like_dcb_entries(dev
, dcb
);
6558 parse_dcb_gpio_table(bios
);
6559 parse_dcb_connector_table(bios
);
6564 fixup_legacy_connector(struct nvbios
*bios
)
6566 struct dcb_table
*dcb
= &bios
->dcb
;
6567 int i
, i2c
, i2c_conn
[DCB_MAX_NUM_I2C_ENTRIES
] = { };
6570 * DCB 3.0 also has the table in most cases, but there are some cards
6571 * where the table is filled with stub entries, and the DCB entriy
6572 * indices are all 0. We don't need the connector indices on pre-G80
6573 * chips (yet?) so limit the use to DCB 4.0 and above.
6575 if (dcb
->version
>= 0x40)
6578 dcb
->connector
.entries
= 0;
6581 * No known connector info before v3.0, so make it up. the rule here
6582 * is: anything on the same i2c bus is considered to be on the same
6583 * connector. any output without an associated i2c bus is assigned
6584 * its own unique connector index.
6586 for (i
= 0; i
< dcb
->entries
; i
++) {
6588 * Ignore the I2C index for on-chip TV-out, as there
6589 * are cards with bogus values (nv31m in bug 23212),
6590 * and it's otherwise useless.
6592 if (dcb
->entry
[i
].type
== OUTPUT_TV
&&
6593 dcb
->entry
[i
].location
== DCB_LOC_ON_CHIP
)
6594 dcb
->entry
[i
].i2c_index
= 0xf;
6595 i2c
= dcb
->entry
[i
].i2c_index
;
6597 if (i2c_conn
[i2c
]) {
6598 dcb
->entry
[i
].connector
= i2c_conn
[i2c
] - 1;
6602 dcb
->entry
[i
].connector
= dcb
->connector
.entries
++;
6604 i2c_conn
[i2c
] = dcb
->connector
.entries
;
6607 /* Fake the connector table as well as just connector indices */
6608 for (i
= 0; i
< dcb
->connector
.entries
; i
++) {
6609 dcb
->connector
.entry
[i
].index
= i
;
6610 dcb
->connector
.entry
[i
].type
= divine_connector_type(bios
, i
);
6611 dcb
->connector
.entry
[i
].gpio_tag
= 0xff;
6616 fixup_legacy_i2c(struct nvbios
*bios
)
6618 struct dcb_table
*dcb
= &bios
->dcb
;
6621 for (i
= 0; i
< dcb
->entries
; i
++) {
6622 if (dcb
->entry
[i
].i2c_index
== LEGACY_I2C_CRT
)
6623 dcb
->entry
[i
].i2c_index
= bios
->legacy
.i2c_indices
.crt
;
6624 if (dcb
->entry
[i
].i2c_index
== LEGACY_I2C_PANEL
)
6625 dcb
->entry
[i
].i2c_index
= bios
->legacy
.i2c_indices
.panel
;
6626 if (dcb
->entry
[i
].i2c_index
== LEGACY_I2C_TV
)
6627 dcb
->entry
[i
].i2c_index
= bios
->legacy
.i2c_indices
.tv
;
6631 static int load_nv17_hwsq_ucode_entry(struct drm_device
*dev
, struct nvbios
*bios
, uint16_t hwsq_offset
, int entry
)
6634 * The header following the "HWSQ" signature has the number of entries,
6635 * and the entry size
6637 * An entry consists of a dword to write to the sequencer control reg
6638 * (0x00001304), followed by the ucode bytes, written sequentially,
6639 * starting at reg 0x00001400
6642 uint8_t bytes_to_write
;
6643 uint16_t hwsq_entry_offset
;
6646 if (bios
->data
[hwsq_offset
] <= entry
) {
6647 NV_ERROR(dev
, "Too few entries in HW sequencer table for "
6648 "requested entry\n");
6652 bytes_to_write
= bios
->data
[hwsq_offset
+ 1];
6654 if (bytes_to_write
!= 36) {
6655 NV_ERROR(dev
, "Unknown HW sequencer entry size\n");
6659 NV_TRACE(dev
, "Loading NV17 power sequencing microcode\n");
6661 hwsq_entry_offset
= hwsq_offset
+ 2 + entry
* bytes_to_write
;
6663 /* set sequencer control */
6664 bios_wr32(bios
, 0x00001304, ROM32(bios
->data
[hwsq_entry_offset
]));
6665 bytes_to_write
-= 4;
6668 for (i
= 0; i
< bytes_to_write
; i
+= 4)
6669 bios_wr32(bios
, 0x00001400 + i
, ROM32(bios
->data
[hwsq_entry_offset
+ i
+ 4]));
6671 /* twiddle NV_PBUS_DEBUG_4 */
6672 bios_wr32(bios
, NV_PBUS_DEBUG_4
, bios_rd32(bios
, NV_PBUS_DEBUG_4
) | 0x18);
6677 static int load_nv17_hw_sequencer_ucode(struct drm_device
*dev
,
6678 struct nvbios
*bios
)
6681 * BMP based cards, from NV17, need a microcode loading to correctly
6682 * control the GPIO etc for LVDS panels
6684 * BIT based cards seem to do this directly in the init scripts
6686 * The microcode entries are found by the "HWSQ" signature.
6689 const uint8_t hwsq_signature
[] = { 'H', 'W', 'S', 'Q' };
6690 const int sz
= sizeof(hwsq_signature
);
6693 hwsq_offset
= findstr(bios
->data
, bios
->length
, hwsq_signature
, sz
);
6697 /* always use entry 0? */
6698 return load_nv17_hwsq_ucode_entry(dev
, bios
, hwsq_offset
+ sz
, 0);
6701 uint8_t *nouveau_bios_embedded_edid(struct drm_device
*dev
)
6703 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6704 struct nvbios
*bios
= &dev_priv
->vbios
;
6705 const uint8_t edid_sig
[] = {
6706 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00 };
6707 uint16_t offset
= 0;
6709 int searchlen
= NV_PROM_SIZE
;
6712 return bios
->fp
.edid
;
6715 newoffset
= findstr(&bios
->data
[offset
], searchlen
,
6719 offset
+= newoffset
;
6720 if (!nv_cksum(&bios
->data
[offset
], EDID1_LEN
))
6723 searchlen
-= offset
;
6727 NV_TRACE(dev
, "Found EDID in BIOS\n");
6729 return bios
->fp
.edid
= &bios
->data
[offset
];
6733 nouveau_bios_run_init_table(struct drm_device
*dev
, uint16_t table
,
6734 struct dcb_entry
*dcbent
)
6736 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6737 struct nvbios
*bios
= &dev_priv
->vbios
;
6738 struct init_exec iexec
= { true, false };
6740 spin_lock_bh(&bios
->lock
);
6741 bios
->display
.output
= dcbent
;
6742 parse_init_table(bios
, table
, &iexec
);
6743 bios
->display
.output
= NULL
;
6744 spin_unlock_bh(&bios
->lock
);
6747 static bool NVInitVBIOS(struct drm_device
*dev
)
6749 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6750 struct nvbios
*bios
= &dev_priv
->vbios
;
6752 memset(bios
, 0, sizeof(struct nvbios
));
6753 spin_lock_init(&bios
->lock
);
6756 if (!NVShadowVBIOS(dev
, bios
->data
))
6759 bios
->length
= NV_PROM_SIZE
;
6763 static int nouveau_parse_vbios_struct(struct drm_device
*dev
)
6765 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6766 struct nvbios
*bios
= &dev_priv
->vbios
;
6767 const uint8_t bit_signature
[] = { 0xff, 0xb8, 'B', 'I', 'T' };
6768 const uint8_t bmp_signature
[] = { 0xff, 0x7f, 'N', 'V', 0x0 };
6771 offset
= findstr(bios
->data
, bios
->length
,
6772 bit_signature
, sizeof(bit_signature
));
6774 NV_TRACE(dev
, "BIT BIOS found\n");
6775 bios
->type
= NVBIOS_BIT
;
6776 bios
->offset
= offset
;
6777 return parse_bit_structure(bios
, offset
+ 6);
6780 offset
= findstr(bios
->data
, bios
->length
,
6781 bmp_signature
, sizeof(bmp_signature
));
6783 NV_TRACE(dev
, "BMP BIOS found\n");
6784 bios
->type
= NVBIOS_BMP
;
6785 bios
->offset
= offset
;
6786 return parse_bmp_structure(dev
, bios
, offset
);
6789 NV_ERROR(dev
, "No known BIOS signature found\n");
6794 nouveau_run_vbios_init(struct drm_device
*dev
)
6796 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6797 struct nvbios
*bios
= &dev_priv
->vbios
;
6800 /* Reset the BIOS head to 0. */
6801 bios
->state
.crtchead
= 0;
6803 if (bios
->major_version
< 5) /* BMP only */
6804 load_nv17_hw_sequencer_ucode(dev
, bios
);
6806 if (bios
->execute
) {
6807 bios
->fp
.last_script_invoc
= 0;
6808 bios
->fp
.lvds_init_run
= false;
6811 parse_init_tables(bios
);
6814 * Runs some additional script seen on G8x VBIOSen. The VBIOS'
6815 * parser will run this right after the init tables, the binary
6816 * driver appears to run it at some point later.
6818 if (bios
->some_script_ptr
) {
6819 struct init_exec iexec
= {true, false};
6821 NV_INFO(dev
, "Parsing VBIOS init table at offset 0x%04X\n",
6822 bios
->some_script_ptr
);
6823 parse_init_table(bios
, bios
->some_script_ptr
, &iexec
);
6826 if (dev_priv
->card_type
>= NV_50
) {
6827 for (i
= 0; i
< bios
->dcb
.entries
; i
++) {
6828 nouveau_bios_run_display_table(dev
,
6829 &bios
->dcb
.entry
[i
],
6838 nouveau_bios_i2c_devices_takedown(struct drm_device
*dev
)
6840 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6841 struct nvbios
*bios
= &dev_priv
->vbios
;
6842 struct dcb_i2c_entry
*entry
;
6845 entry
= &bios
->dcb
.i2c
[0];
6846 for (i
= 0; i
< DCB_MAX_NUM_I2C_ENTRIES
; i
++, entry
++)
6847 nouveau_i2c_fini(dev
, entry
);
6851 nouveau_bios_posted(struct drm_device
*dev
)
6853 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6856 if (dev_priv
->card_type
>= NV_50
) {
6857 if (NVReadVgaCrtc(dev
, 0, 0x00) == 0 &&
6858 NVReadVgaCrtc(dev
, 0, 0x1a) == 0)
6863 htotal
= NVReadVgaCrtc(dev
, 0, 0x06);
6864 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x07) & 0x01) << 8;
6865 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x07) & 0x20) << 4;
6866 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x25) & 0x01) << 10;
6867 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x41) & 0x01) << 11;
6869 return (htotal
!= 0);
6873 nouveau_bios_init(struct drm_device
*dev
)
6875 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6876 struct nvbios
*bios
= &dev_priv
->vbios
;
6879 if (!NVInitVBIOS(dev
))
6882 ret
= nouveau_parse_vbios_struct(dev
);
6886 ret
= parse_dcb_table(dev
, bios
);
6890 fixup_legacy_i2c(bios
);
6891 fixup_legacy_connector(bios
);
6893 if (!bios
->major_version
) /* we don't run version 0 bios */
6896 /* init script execution disabled */
6897 bios
->execute
= false;
6899 /* ... unless card isn't POSTed already */
6900 if (!nouveau_bios_posted(dev
)) {
6901 NV_INFO(dev
, "Adaptor not initialised, "
6902 "running VBIOS init tables.\n");
6903 bios
->execute
= true;
6905 if (nouveau_force_post
)
6906 bios
->execute
= true;
6908 ret
= nouveau_run_vbios_init(dev
);
6912 /* feature_byte on BMP is poor, but init always sets CR4B */
6913 if (bios
->major_version
< 5)
6914 bios
->is_mobile
= NVReadVgaCrtc(dev
, 0, NV_CIO_CRE_4B
) & 0x40;
6916 /* all BIT systems need p_f_m_t for digital_min_front_porch */
6917 if (bios
->is_mobile
|| bios
->major_version
>= 5)
6918 ret
= parse_fp_mode_table(dev
, bios
);
6920 /* allow subsequent scripts to execute */
6921 bios
->execute
= true;
6927 nouveau_bios_takedown(struct drm_device
*dev
)
6929 nouveau_bios_i2c_devices_takedown(dev
);