diff options
25 files changed, 1088 insertions, 763 deletions
diff --git a/Documentation/thermal/nouveau_thermal b/Documentation/thermal/nouveau_thermal index efceb7828f54..60bc29357ac3 100644 --- a/Documentation/thermal/nouveau_thermal +++ b/Documentation/thermal/nouveau_thermal | |||
| @@ -4,7 +4,7 @@ Kernel driver nouveau | |||
| 4 | Supported chips: | 4 | Supported chips: |
| 5 | * NV43+ | 5 | * NV43+ |
| 6 | 6 | ||
| 7 | Authors: Martin Peres (mupuf) <martin.peres@labri.fr> | 7 | Authors: Martin Peres (mupuf) <martin.peres@free.fr> |
| 8 | 8 | ||
| 9 | Description | 9 | Description |
| 10 | --------- | 10 | --------- |
| @@ -68,8 +68,9 @@ Your fan can be driven in different modes: | |||
| 68 | 68 | ||
| 69 | NOTE: Be sure to use the manual mode if you want to drive the fan speed manually | 69 | NOTE: Be sure to use the manual mode if you want to drive the fan speed manually |
| 70 | 70 | ||
| 71 | NOTE2: Not all fan management modes may be supported on all chipsets. We are | 71 | NOTE2: When operating in manual mode outside the vbios-defined |
| 72 | working on it. | 72 | [PWM_min, PWM_max] range, the reported fan speed (RPM) may not be accurate |
| 73 | depending on your hardware. | ||
| 73 | 74 | ||
| 74 | Bug reports | 75 | Bug reports |
| 75 | --------- | 76 | --------- |
diff --git a/drivers/gpu/drm/nouveau/core/engine/disp/dport.c b/drivers/gpu/drm/nouveau/core/engine/disp/dport.c index 39562d48101d..5a5b59b21130 100644 --- a/drivers/gpu/drm/nouveau/core/engine/disp/dport.c +++ b/drivers/gpu/drm/nouveau/core/engine/disp/dport.c | |||
| @@ -241,7 +241,9 @@ dp_link_train_eq(struct dp_state *dp) | |||
| 241 | dp_set_training_pattern(dp, 2); | 241 | dp_set_training_pattern(dp, 2); |
| 242 | 242 | ||
| 243 | do { | 243 | do { |
| 244 | if (dp_link_train_update(dp, dp->pc2, 400)) | 244 | if ((tries && |
| 245 | dp_link_train_commit(dp, dp->pc2)) || | ||
| 246 | dp_link_train_update(dp, dp->pc2, 400)) | ||
| 245 | break; | 247 | break; |
| 246 | 248 | ||
| 247 | eq_done = !!(dp->stat[2] & DPCD_LS04_INTERLANE_ALIGN_DONE); | 249 | eq_done = !!(dp->stat[2] & DPCD_LS04_INTERLANE_ALIGN_DONE); |
| @@ -253,9 +255,6 @@ dp_link_train_eq(struct dp_state *dp) | |||
| 253 | !(lane & DPCD_LS02_LANE0_SYMBOL_LOCKED)) | 255 | !(lane & DPCD_LS02_LANE0_SYMBOL_LOCKED)) |
| 254 | eq_done = false; | 256 | eq_done = false; |
| 255 | } | 257 | } |
| 256 | |||
| 257 | if (dp_link_train_commit(dp, dp->pc2)) | ||
| 258 | break; | ||
| 259 | } while (!eq_done && cr_done && ++tries <= 5); | 258 | } while (!eq_done && cr_done && ++tries <= 5); |
| 260 | 259 | ||
| 261 | return eq_done ? 0 : -1; | 260 | return eq_done ? 0 : -1; |
diff --git a/drivers/gpu/drm/nouveau/core/engine/disp/nv50.c b/drivers/gpu/drm/nouveau/core/engine/disp/nv50.c index 1e85f36c705f..26e962b7e702 100644 --- a/drivers/gpu/drm/nouveau/core/engine/disp/nv50.c +++ b/drivers/gpu/drm/nouveau/core/engine/disp/nv50.c | |||
| @@ -1270,7 +1270,7 @@ exec_clkcmp(struct nv50_disp_priv *priv, int head, int id, u32 pclk, u32 *conf) | |||
| 1270 | i--; | 1270 | i--; |
| 1271 | 1271 | ||
| 1272 | outp = exec_lookup(priv, head, i, ctrl, &data, &ver, &hdr, &cnt, &len, &info1); | 1272 | outp = exec_lookup(priv, head, i, ctrl, &data, &ver, &hdr, &cnt, &len, &info1); |
| 1273 | if (!data) | 1273 | if (!outp) |
| 1274 | return NULL; | 1274 | return NULL; |
| 1275 | 1275 | ||
| 1276 | if (outp->info.location == 0) { | 1276 | if (outp->info.location == 0) { |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/gpc.fuc b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/gpc.fuc index 2f7345f7fe07..7445f12b1d9e 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/gpc.fuc +++ b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/gpc.fuc | |||
| @@ -54,7 +54,7 @@ mmio_list_base: | |||
| 54 | #ifdef INCLUDE_CODE | 54 | #ifdef INCLUDE_CODE |
| 55 | // reports an exception to the host | 55 | // reports an exception to the host |
| 56 | // | 56 | // |
| 57 | // In: $r15 error code (see nvc0.fuc) | 57 | // In: $r15 error code (see os.h) |
| 58 | // | 58 | // |
| 59 | error: | 59 | error: |
| 60 | push $r14 | 60 | push $r14 |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hub.fuc b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hub.fuc index c8ddb8d71b91..b4ad18bf5a26 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hub.fuc +++ b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hub.fuc | |||
| @@ -49,7 +49,7 @@ hub_mmio_list_next: | |||
| 49 | #ifdef INCLUDE_CODE | 49 | #ifdef INCLUDE_CODE |
| 50 | // reports an exception to the host | 50 | // reports an exception to the host |
| 51 | // | 51 | // |
| 52 | // In: $r15 error code (see nvc0.fuc) | 52 | // In: $r15 error code (see os.h) |
| 53 | // | 53 | // |
| 54 | error: | 54 | error: |
| 55 | nv_iowr(NV_PGRAPH_FECS_CC_SCRATCH_VAL(5), 0, $r15) | 55 | nv_iowr(NV_PGRAPH_FECS_CC_SCRATCH_VAL(5), 0, $r15) |
| @@ -343,13 +343,25 @@ ih: | |||
| 343 | ih_no_ctxsw: | 343 | ih_no_ctxsw: |
| 344 | and $r11 $r10 NV_PGRAPH_FECS_INTR_FWMTHD | 344 | and $r11 $r10 NV_PGRAPH_FECS_INTR_FWMTHD |
| 345 | bra e #ih_no_fwmthd | 345 | bra e #ih_no_fwmthd |
| 346 | // none we handle, ack, and fall-through to unhandled | 346 | // none we handle; report to host and ack |
| 347 | nv_rd32($r15, NV_PGRAPH_TRAPPED_DATA_LO) | ||
| 348 | nv_iowr(NV_PGRAPH_FECS_CC_SCRATCH_VAL(4), 0, $r15) | ||
| 349 | nv_rd32($r15, NV_PGRAPH_TRAPPED_ADDR) | ||
| 350 | nv_iowr(NV_PGRAPH_FECS_CC_SCRATCH_VAL(3), 0, $r15) | ||
| 351 | extr $r14 $r15 16:18 | ||
| 352 | shl b32 $r14 $r14 2 | ||
| 353 | imm32($r15, NV_PGRAPH_FE_OBJECT_TABLE(0)) | ||
| 354 | add b32 $r14 $r15 | ||
| 355 | call(nv_rd32) | ||
| 356 | nv_iowr(NV_PGRAPH_FECS_CC_SCRATCH_VAL(2), 0, $r15) | ||
| 357 | mov $r15 E_BAD_FWMTHD | ||
| 358 | call(error) | ||
| 347 | mov $r11 0x100 | 359 | mov $r11 0x100 |
| 348 | nv_wr32(0x400144, $r11) | 360 | nv_wr32(0x400144, $r11) |
| 349 | 361 | ||
| 350 | // anything we didn't handle, bring it to the host's attention | 362 | // anything we didn't handle, bring it to the host's attention |
| 351 | ih_no_fwmthd: | 363 | ih_no_fwmthd: |
| 352 | mov $r11 0x104 // FIFO | CHSW | 364 | mov $r11 0x504 // FIFO | CHSW | FWMTHD |
| 353 | not b32 $r11 | 365 | not b32 $r11 |
| 354 | and $r11 $r10 $r11 | 366 | and $r11 $r10 $r11 |
| 355 | bra e #ih_no_other | 367 | bra e #ih_no_other |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubgm107.fuc5.h b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubgm107.fuc5.h index 214dd16ec566..5f953c5c20b7 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubgm107.fuc5.h +++ b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubgm107.fuc5.h | |||
| @@ -478,10 +478,10 @@ uint32_t gm107_grhub_code[] = { | |||
| 478 | 0x01040080, | 478 | 0x01040080, |
| 479 | 0xbd0001f6, | 479 | 0xbd0001f6, |
| 480 | 0x01004104, | 480 | 0x01004104, |
| 481 | 0x627e020f, | 481 | 0xa87e020f, |
| 482 | 0x717e0006, | 482 | 0xb77e0006, |
| 483 | 0x100f0006, | 483 | 0x100f0006, |
| 484 | 0x0006b37e, | 484 | 0x0006f97e, |
| 485 | 0x98000e98, | 485 | 0x98000e98, |
| 486 | 0x207e010f, | 486 | 0x207e010f, |
| 487 | 0x14950001, | 487 | 0x14950001, |
| @@ -523,8 +523,8 @@ uint32_t gm107_grhub_code[] = { | |||
| 523 | 0x800040b7, | 523 | 0x800040b7, |
| 524 | 0xf40132b6, | 524 | 0xf40132b6, |
| 525 | 0x000fb41b, | 525 | 0x000fb41b, |
| 526 | 0x0006b37e, | 526 | 0x0006f97e, |
| 527 | 0x627e000f, | 527 | 0xa87e000f, |
| 528 | 0x00800006, | 528 | 0x00800006, |
| 529 | 0x01f60201, | 529 | 0x01f60201, |
| 530 | 0xbd04bd00, | 530 | 0xbd04bd00, |
| @@ -554,7 +554,7 @@ uint32_t gm107_grhub_code[] = { | |||
| 554 | 0x0009f602, | 554 | 0x0009f602, |
| 555 | 0x32f404bd, | 555 | 0x32f404bd, |
| 556 | 0x0231f401, | 556 | 0x0231f401, |
| 557 | 0x0008367e, | 557 | 0x00087c7e, |
| 558 | 0x99f094bd, | 558 | 0x99f094bd, |
| 559 | 0x17008007, | 559 | 0x17008007, |
| 560 | 0x0009f602, | 560 | 0x0009f602, |
| @@ -563,7 +563,7 @@ uint32_t gm107_grhub_code[] = { | |||
| 563 | 0x37008006, | 563 | 0x37008006, |
| 564 | 0x0009f602, | 564 | 0x0009f602, |
| 565 | 0x31f404bd, | 565 | 0x31f404bd, |
| 566 | 0x08367e01, | 566 | 0x087c7e01, |
| 567 | 0xf094bd00, | 567 | 0xf094bd00, |
| 568 | 0x00800699, | 568 | 0x00800699, |
| 569 | 0x09f60217, | 569 | 0x09f60217, |
| @@ -572,7 +572,7 @@ uint32_t gm107_grhub_code[] = { | |||
| 572 | 0x20f92f0e, | 572 | 0x20f92f0e, |
| 573 | 0x32f412b2, | 573 | 0x32f412b2, |
| 574 | 0x0232f401, | 574 | 0x0232f401, |
| 575 | 0x0008367e, | 575 | 0x00087c7e, |
| 576 | 0x008020fc, | 576 | 0x008020fc, |
| 577 | 0x02f602c0, | 577 | 0x02f602c0, |
| 578 | 0xf404bd00, | 578 | 0xf404bd00, |
| @@ -580,7 +580,7 @@ uint32_t gm107_grhub_code[] = { | |||
| 580 | 0x23c8130e, | 580 | 0x23c8130e, |
| 581 | 0x0d0bf41f, | 581 | 0x0d0bf41f, |
| 582 | 0xf40131f4, | 582 | 0xf40131f4, |
| 583 | 0x367e0232, | 583 | 0x7c7e0232, |
| 584 | /* 0x054e: chsw_done */ | 584 | /* 0x054e: chsw_done */ |
| 585 | 0x01020008, | 585 | 0x01020008, |
| 586 | 0x02c30080, | 586 | 0x02c30080, |
| @@ -593,7 +593,7 @@ uint32_t gm107_grhub_code[] = { | |||
| 593 | 0xb0ff2a0e, | 593 | 0xb0ff2a0e, |
| 594 | 0x1bf401e4, | 594 | 0x1bf401e4, |
| 595 | 0x7ef2b20c, | 595 | 0x7ef2b20c, |
| 596 | 0xf40007d6, | 596 | 0xf400081c, |
| 597 | /* 0x057a: main_not_ctx_chan */ | 597 | /* 0x057a: main_not_ctx_chan */ |
| 598 | 0xe4b0400e, | 598 | 0xe4b0400e, |
| 599 | 0x2c1bf402, | 599 | 0x2c1bf402, |
| @@ -602,7 +602,7 @@ uint32_t gm107_grhub_code[] = { | |||
| 602 | 0x0009f602, | 602 | 0x0009f602, |
| 603 | 0x32f404bd, | 603 | 0x32f404bd, |
| 604 | 0x0232f401, | 604 | 0x0232f401, |
| 605 | 0x0008367e, | 605 | 0x00087c7e, |
| 606 | 0x99f094bd, | 606 | 0x99f094bd, |
| 607 | 0x17008007, | 607 | 0x17008007, |
| 608 | 0x0009f602, | 608 | 0x0009f602, |
| @@ -642,238 +642,238 @@ uint32_t gm107_grhub_code[] = { | |||
| 642 | /* 0x061a: ih_no_ctxsw */ | 642 | /* 0x061a: ih_no_ctxsw */ |
| 643 | 0xabe40000, | 643 | 0xabe40000, |
| 644 | 0x0bf40400, | 644 | 0x0bf40400, |
| 645 | 0x01004b10, | 645 | 0x07088e56, |
| 646 | 0x448ebfb2, | ||
| 647 | 0x8f7e4001, | ||
| 648 | /* 0x062e: ih_no_fwmthd */ | ||
| 649 | 0x044b0000, | ||
| 650 | 0xffb0bd01, | ||
| 651 | 0x0bf4b4ab, | ||
| 652 | 0x0700800c, | ||
| 653 | 0x000bf603, | ||
| 654 | /* 0x0642: ih_no_other */ | ||
| 655 | 0x004004bd, | ||
| 656 | 0x000af601, | ||
| 657 | 0xf0fc04bd, | ||
| 658 | 0xd0fce0fc, | ||
| 659 | 0xa0fcb0fc, | ||
| 660 | 0x80fc90fc, | ||
| 661 | 0xfc0088fe, | ||
| 662 | 0x0032f480, | ||
| 663 | /* 0x0662: ctx_4170s */ | ||
| 664 | 0xf5f001f8, | ||
| 665 | 0x8effb210, | ||
| 666 | 0x7e404170, | ||
| 667 | 0xf800008f, | ||
| 668 | /* 0x0671: ctx_4170w */ | ||
| 669 | 0x41708e00, | ||
| 670 | 0x00657e40, | 646 | 0x00657e40, |
| 671 | 0xf0ffb200, | 647 | 0x80ffb200, |
| 672 | 0x1bf410f4, | 648 | 0xf6020400, |
| 673 | /* 0x0683: ctx_redswitch */ | ||
| 674 | 0x4e00f8f3, | ||
| 675 | 0xe5f00200, | ||
| 676 | 0x20e5f040, | ||
| 677 | 0x8010e5f0, | ||
| 678 | 0xf6018500, | ||
| 679 | 0x04bd000e, | ||
| 680 | /* 0x069a: ctx_redswitch_delay */ | ||
| 681 | 0xf2b6080f, | ||
| 682 | 0xfd1bf401, | ||
| 683 | 0x0400e5f1, | ||
| 684 | 0x0100e5f1, | ||
| 685 | 0x01850080, | ||
| 686 | 0xbd000ef6, | ||
| 687 | /* 0x06b3: ctx_86c */ | ||
| 688 | 0x8000f804, | ||
| 689 | 0xf6022300, | ||
| 690 | 0x04bd000f, | 649 | 0x04bd000f, |
| 691 | 0x148effb2, | 650 | 0x4007048e, |
| 692 | 0x8f7e408a, | 651 | 0x0000657e, |
| 693 | 0xffb20000, | 652 | 0x0080ffb2, |
| 694 | 0x41a88c8e, | 653 | 0x0ff60203, |
| 654 | 0xc704bd00, | ||
| 655 | 0xee9450fe, | ||
| 656 | 0x07008f02, | ||
| 657 | 0x00efbb40, | ||
| 658 | 0x0000657e, | ||
| 659 | 0x02020080, | ||
| 660 | 0xbd000ff6, | ||
| 661 | 0x7e030f04, | ||
| 662 | 0x4b0002f8, | ||
| 663 | 0xbfb20100, | ||
| 664 | 0x4001448e, | ||
| 695 | 0x00008f7e, | 665 | 0x00008f7e, |
| 696 | /* 0x06d2: ctx_mem */ | 666 | /* 0x0674: ih_no_fwmthd */ |
| 697 | 0x008000f8, | 667 | 0xbd05044b, |
| 698 | 0x0ff60284, | 668 | 0xb4abffb0, |
| 699 | /* 0x06db: ctx_mem_wait */ | 669 | 0x800c0bf4, |
| 700 | 0x8f04bd00, | 670 | 0xf6030700, |
| 701 | 0xcf028400, | 671 | 0x04bd000b, |
| 702 | 0xfffd00ff, | 672 | /* 0x0688: ih_no_other */ |
| 703 | 0xf61bf405, | 673 | 0xf6010040, |
| 704 | /* 0x06ea: ctx_load */ | 674 | 0x04bd000a, |
| 705 | 0x94bd00f8, | 675 | 0xe0fcf0fc, |
| 706 | 0x800599f0, | 676 | 0xb0fcd0fc, |
| 707 | 0xf6023700, | 677 | 0x90fca0fc, |
| 708 | 0x04bd0009, | 678 | 0x88fe80fc, |
| 709 | 0xb87e0c0a, | 679 | 0xf480fc00, |
| 710 | 0xf4bd0000, | 680 | 0x01f80032, |
| 711 | 0x02890080, | 681 | /* 0x06a8: ctx_4170s */ |
| 682 | 0xb210f5f0, | ||
| 683 | 0x41708eff, | ||
| 684 | 0x008f7e40, | ||
| 685 | /* 0x06b7: ctx_4170w */ | ||
| 686 | 0x8e00f800, | ||
| 687 | 0x7e404170, | ||
| 688 | 0xb2000065, | ||
| 689 | 0x10f4f0ff, | ||
| 690 | 0xf8f31bf4, | ||
| 691 | /* 0x06c9: ctx_redswitch */ | ||
| 692 | 0x02004e00, | ||
| 693 | 0xf040e5f0, | ||
| 694 | 0xe5f020e5, | ||
| 695 | 0x85008010, | ||
| 696 | 0x000ef601, | ||
| 697 | 0x080f04bd, | ||
| 698 | /* 0x06e0: ctx_redswitch_delay */ | ||
| 699 | 0xf401f2b6, | ||
| 700 | 0xe5f1fd1b, | ||
| 701 | 0xe5f10400, | ||
| 702 | 0x00800100, | ||
| 703 | 0x0ef60185, | ||
| 704 | 0xf804bd00, | ||
| 705 | /* 0x06f9: ctx_86c */ | ||
| 706 | 0x23008000, | ||
| 707 | 0x000ff602, | ||
| 708 | 0xffb204bd, | ||
| 709 | 0x408a148e, | ||
| 710 | 0x00008f7e, | ||
| 711 | 0x8c8effb2, | ||
| 712 | 0x8f7e41a8, | ||
| 713 | 0x00f80000, | ||
| 714 | /* 0x0718: ctx_mem */ | ||
| 715 | 0x02840080, | ||
| 712 | 0xbd000ff6, | 716 | 0xbd000ff6, |
| 713 | 0xc1008004, | 717 | /* 0x0721: ctx_mem_wait */ |
| 714 | 0x0002f602, | 718 | 0x84008f04, |
| 715 | 0x008004bd, | 719 | 0x00ffcf02, |
| 716 | 0x02f60283, | 720 | 0xf405fffd, |
| 717 | 0x0f04bd00, | 721 | 0x00f8f61b, |
| 718 | 0x06d27e07, | 722 | /* 0x0730: ctx_load */ |
| 719 | 0xc0008000, | 723 | 0x99f094bd, |
| 720 | 0x0002f602, | 724 | 0x37008005, |
| 721 | 0x0bfe04bd, | 725 | 0x0009f602, |
| 722 | 0x1f2af000, | 726 | 0x0c0a04bd, |
| 723 | 0xb60424b6, | 727 | 0x0000b87e, |
| 724 | 0x94bd0220, | 728 | 0x0080f4bd, |
| 725 | 0x800899f0, | 729 | 0x0ff60289, |
| 726 | 0xf6023700, | 730 | 0x8004bd00, |
| 727 | 0x04bd0009, | 731 | 0xf602c100, |
| 728 | 0x02810080, | 732 | 0x04bd0002, |
| 729 | 0xbd0002f6, | 733 | 0x02830080, |
| 730 | 0x0000d204, | ||
| 731 | 0x25f08000, | ||
| 732 | 0x88008002, | ||
| 733 | 0x0002f602, | ||
| 734 | 0x100104bd, | ||
| 735 | 0xf0020042, | ||
| 736 | 0x12fa0223, | ||
| 737 | 0xbd03f805, | ||
| 738 | 0x0899f094, | ||
| 739 | 0x02170080, | ||
| 740 | 0xbd0009f6, | ||
| 741 | 0x81019804, | ||
| 742 | 0x981814b6, | ||
| 743 | 0x25b68002, | ||
| 744 | 0x0512fd08, | ||
| 745 | 0xbd1601b5, | ||
| 746 | 0x0999f094, | ||
| 747 | 0x02370080, | ||
| 748 | 0xbd0009f6, | ||
| 749 | 0x81008004, | ||
| 750 | 0x0001f602, | ||
| 751 | 0x010204bd, | ||
| 752 | 0x02880080, | ||
| 753 | 0xbd0002f6, | 734 | 0xbd0002f6, |
| 754 | 0x01004104, | 735 | 0x7e070f04, |
| 755 | 0xfa0613f0, | 736 | 0x80000718, |
| 756 | 0x03f80501, | 737 | 0xf602c000, |
| 738 | 0x04bd0002, | ||
| 739 | 0xf0000bfe, | ||
| 740 | 0x24b61f2a, | ||
| 741 | 0x0220b604, | ||
| 757 | 0x99f094bd, | 742 | 0x99f094bd, |
| 758 | 0x17008009, | 743 | 0x37008008, |
| 759 | 0x0009f602, | 744 | 0x0009f602, |
| 760 | 0x94bd04bd, | 745 | 0x008004bd, |
| 761 | 0x800599f0, | 746 | 0x02f60281, |
| 747 | 0xd204bd00, | ||
| 748 | 0x80000000, | ||
| 749 | 0x800225f0, | ||
| 750 | 0xf6028800, | ||
| 751 | 0x04bd0002, | ||
| 752 | 0x00421001, | ||
| 753 | 0x0223f002, | ||
| 754 | 0xf80512fa, | ||
| 755 | 0xf094bd03, | ||
| 756 | 0x00800899, | ||
| 757 | 0x09f60217, | ||
| 758 | 0x9804bd00, | ||
| 759 | 0x14b68101, | ||
| 760 | 0x80029818, | ||
| 761 | 0xfd0825b6, | ||
| 762 | 0x01b50512, | ||
| 763 | 0xf094bd16, | ||
| 764 | 0x00800999, | ||
| 765 | 0x09f60237, | ||
| 766 | 0x8004bd00, | ||
| 767 | 0xf6028100, | ||
| 768 | 0x04bd0001, | ||
| 769 | 0x00800102, | ||
| 770 | 0x02f60288, | ||
| 771 | 0x4104bd00, | ||
| 772 | 0x13f00100, | ||
| 773 | 0x0501fa06, | ||
| 774 | 0x94bd03f8, | ||
| 775 | 0x800999f0, | ||
| 762 | 0xf6021700, | 776 | 0xf6021700, |
| 763 | 0x04bd0009, | 777 | 0x04bd0009, |
| 764 | /* 0x07d6: ctx_chan */ | 778 | 0x99f094bd, |
| 765 | 0xea7e00f8, | 779 | 0x17008005, |
| 766 | 0x0c0a0006, | 780 | 0x0009f602, |
| 767 | 0x0000b87e, | 781 | 0x00f804bd, |
| 768 | 0xd27e050f, | 782 | /* 0x081c: ctx_chan */ |
| 769 | 0x00f80006, | 783 | 0x0007307e, |
| 770 | /* 0x07e8: ctx_mmio_exec */ | 784 | 0xb87e0c0a, |
| 771 | 0x80410398, | 785 | 0x050f0000, |
| 786 | 0x0007187e, | ||
| 787 | /* 0x082e: ctx_mmio_exec */ | ||
| 788 | 0x039800f8, | ||
| 789 | 0x81008041, | ||
| 790 | 0x0003f602, | ||
| 791 | 0x34bd04bd, | ||
| 792 | /* 0x083c: ctx_mmio_loop */ | ||
| 793 | 0xf4ff34c4, | ||
| 794 | 0x00450e1b, | ||
| 795 | 0x0653f002, | ||
| 796 | 0xf80535fa, | ||
| 797 | /* 0x084d: ctx_mmio_pull */ | ||
| 798 | 0x804e9803, | ||
| 799 | 0x7e814f98, | ||
| 800 | 0xb600008f, | ||
| 801 | 0x12b60830, | ||
| 802 | 0xdf1bf401, | ||
| 803 | /* 0x0860: ctx_mmio_done */ | ||
| 804 | 0x80160398, | ||
| 772 | 0xf6028100, | 805 | 0xf6028100, |
| 773 | 0x04bd0003, | 806 | 0x04bd0003, |
| 774 | /* 0x07f6: ctx_mmio_loop */ | 807 | 0x414000b5, |
| 775 | 0x34c434bd, | 808 | 0x13f00100, |
| 776 | 0x0e1bf4ff, | 809 | 0x0601fa06, |
| 777 | 0xf0020045, | 810 | 0x00f803f8, |
| 778 | 0x35fa0653, | 811 | /* 0x087c: ctx_xfer */ |
| 779 | /* 0x0807: ctx_mmio_pull */ | 812 | 0x0080040e, |
| 780 | 0x9803f805, | 813 | 0x0ef60302, |
| 781 | 0x4f98804e, | 814 | /* 0x0887: ctx_xfer_idle */ |
| 782 | 0x008f7e81, | 815 | 0x8e04bd00, |
| 783 | 0x0830b600, | 816 | 0xcf030000, |
| 784 | 0xf40112b6, | 817 | 0xe4f100ee, |
| 785 | /* 0x081a: ctx_mmio_done */ | 818 | 0x1bf42000, |
| 786 | 0x0398df1b, | 819 | 0x0611f4f5, |
| 787 | 0x81008016, | 820 | /* 0x089b: ctx_xfer_pre */ |
| 788 | 0x0003f602, | 821 | 0x0f0c02f4, |
| 789 | 0x00b504bd, | 822 | 0x06f97e10, |
| 790 | 0x01004140, | 823 | 0x1b11f400, |
| 791 | 0xfa0613f0, | 824 | /* 0x08a4: ctx_xfer_pre_load */ |
| 792 | 0x03f80601, | 825 | 0xa87e020f, |
| 793 | /* 0x0836: ctx_xfer */ | 826 | 0xb77e0006, |
| 794 | 0x040e00f8, | 827 | 0xc97e0006, |
| 795 | 0x03020080, | 828 | 0xf4bd0006, |
| 796 | 0xbd000ef6, | 829 | 0x0006a87e, |
| 797 | /* 0x0841: ctx_xfer_idle */ | 830 | 0x0007307e, |
| 798 | 0x00008e04, | 831 | /* 0x08bc: ctx_xfer_exec */ |
| 799 | 0x00eecf03, | 832 | 0xbd160198, |
| 800 | 0x2000e4f1, | 833 | 0x05008024, |
| 801 | 0xf4f51bf4, | 834 | 0x0002f601, |
| 802 | 0x02f40611, | 835 | 0x1fb204bd, |
| 803 | /* 0x0855: ctx_xfer_pre */ | 836 | 0x41a5008e, |
| 804 | 0x7e100f0c, | ||
| 805 | 0xf40006b3, | ||
| 806 | /* 0x085e: ctx_xfer_pre_load */ | ||
| 807 | 0x020f1b11, | ||
| 808 | 0x0006627e, | ||
| 809 | 0x0006717e, | ||
| 810 | 0x0006837e, | ||
| 811 | 0x627ef4bd, | ||
| 812 | 0xea7e0006, | ||
| 813 | /* 0x0876: ctx_xfer_exec */ | ||
| 814 | 0x01980006, | ||
| 815 | 0x8024bd16, | ||
| 816 | 0xf6010500, | ||
| 817 | 0x04bd0002, | ||
| 818 | 0x008e1fb2, | ||
| 819 | 0x8f7e41a5, | ||
| 820 | 0xfcf00000, | ||
| 821 | 0x022cf001, | ||
| 822 | 0xfd0124b6, | ||
| 823 | 0xffb205f2, | ||
| 824 | 0x41a5048e, | ||
| 825 | 0x00008f7e, | 837 | 0x00008f7e, |
| 826 | 0x0002167e, | 838 | 0xf001fcf0, |
| 827 | 0xfc8024bd, | 839 | 0x24b6022c, |
| 828 | 0x02f60247, | 840 | 0x05f2fd01, |
| 829 | 0xf004bd00, | 841 | 0x048effb2, |
| 830 | 0x20b6012c, | 842 | 0x8f7e41a5, |
| 831 | 0x4afc8003, | 843 | 0x167e0000, |
| 832 | 0x0002f602, | 844 | 0x24bd0002, |
| 833 | 0xacf004bd, | 845 | 0x0247fc80, |
| 834 | 0x06a5f001, | 846 | 0xbd0002f6, |
| 835 | 0x0c98000b, | 847 | 0x012cf004, |
| 836 | 0x010d9800, | 848 | 0x800320b6, |
| 837 | 0x3d7e000e, | 849 | 0xf6024afc, |
| 838 | 0x080a0001, | 850 | 0x04bd0002, |
| 839 | 0x0000ec7e, | 851 | 0xf001acf0, |
| 840 | 0x00020a7e, | 852 | 0x000b06a5, |
| 841 | 0x0a1201f4, | 853 | 0x98000c98, |
| 842 | 0x00b87e0c, | 854 | 0x000e010d, |
| 843 | 0x7e050f00, | 855 | 0x00013d7e, |
| 844 | 0xf40006d2, | 856 | 0xec7e080a, |
| 845 | /* 0x08f2: ctx_xfer_post */ | 857 | 0x0a7e0000, |
| 846 | 0x020f2d02, | 858 | 0x01f40002, |
| 847 | 0x0006627e, | 859 | 0x7e0c0a12, |
| 848 | 0xb37ef4bd, | 860 | 0x0f0000b8, |
| 849 | 0x277e0006, | 861 | 0x07187e05, |
| 850 | 0x717e0002, | 862 | 0x2d02f400, |
| 863 | /* 0x0938: ctx_xfer_post */ | ||
| 864 | 0xa87e020f, | ||
| 851 | 0xf4bd0006, | 865 | 0xf4bd0006, |
| 852 | 0x0006627e, | 866 | 0x0006f97e, |
| 853 | 0x981011f4, | 867 | 0x0002277e, |
| 854 | 0x11fd4001, | 868 | 0x0006b77e, |
| 855 | 0x070bf405, | 869 | 0xa87ef4bd, |
| 856 | 0x0007e87e, | 870 | 0x11f40006, |
| 857 | /* 0x091c: ctx_xfer_no_post_mmio */ | 871 | 0x40019810, |
| 858 | /* 0x091c: ctx_xfer_done */ | 872 | 0xf40511fd, |
| 859 | 0x000000f8, | 873 | 0x2e7e070b, |
| 860 | 0x00000000, | 874 | /* 0x0962: ctx_xfer_no_post_mmio */ |
| 861 | 0x00000000, | 875 | /* 0x0962: ctx_xfer_done */ |
| 862 | 0x00000000, | 876 | 0x00f80008, |
| 863 | 0x00000000, | ||
| 864 | 0x00000000, | ||
| 865 | 0x00000000, | ||
| 866 | 0x00000000, | ||
| 867 | 0x00000000, | ||
| 868 | 0x00000000, | ||
| 869 | 0x00000000, | ||
| 870 | 0x00000000, | ||
| 871 | 0x00000000, | ||
| 872 | 0x00000000, | ||
| 873 | 0x00000000, | ||
| 874 | 0x00000000, | ||
| 875 | 0x00000000, | ||
| 876 | 0x00000000, | ||
| 877 | 0x00000000, | 877 | 0x00000000, |
| 878 | 0x00000000, | 878 | 0x00000000, |
| 879 | 0x00000000, | 879 | 0x00000000, |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnv108.fuc5.h b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnv108.fuc5.h index 64dfd75192bf..e49b5a877ae4 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnv108.fuc5.h +++ b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnv108.fuc5.h | |||
| @@ -478,10 +478,10 @@ uint32_t nv108_grhub_code[] = { | |||
| 478 | 0x01040080, | 478 | 0x01040080, |
| 479 | 0xbd0001f6, | 479 | 0xbd0001f6, |
| 480 | 0x01004104, | 480 | 0x01004104, |
| 481 | 0x627e020f, | 481 | 0xa87e020f, |
| 482 | 0x717e0006, | 482 | 0xb77e0006, |
| 483 | 0x100f0006, | 483 | 0x100f0006, |
| 484 | 0x0006b37e, | 484 | 0x0006f97e, |
| 485 | 0x98000e98, | 485 | 0x98000e98, |
| 486 | 0x207e010f, | 486 | 0x207e010f, |
| 487 | 0x14950001, | 487 | 0x14950001, |
| @@ -523,8 +523,8 @@ uint32_t nv108_grhub_code[] = { | |||
| 523 | 0x800040b7, | 523 | 0x800040b7, |
| 524 | 0xf40132b6, | 524 | 0xf40132b6, |
| 525 | 0x000fb41b, | 525 | 0x000fb41b, |
| 526 | 0x0006b37e, | 526 | 0x0006f97e, |
| 527 | 0x627e000f, | 527 | 0xa87e000f, |
| 528 | 0x00800006, | 528 | 0x00800006, |
| 529 | 0x01f60201, | 529 | 0x01f60201, |
| 530 | 0xbd04bd00, | 530 | 0xbd04bd00, |
| @@ -554,7 +554,7 @@ uint32_t nv108_grhub_code[] = { | |||
| 554 | 0x0009f602, | 554 | 0x0009f602, |
| 555 | 0x32f404bd, | 555 | 0x32f404bd, |
| 556 | 0x0231f401, | 556 | 0x0231f401, |
| 557 | 0x0008367e, | 557 | 0x00087c7e, |
| 558 | 0x99f094bd, | 558 | 0x99f094bd, |
| 559 | 0x17008007, | 559 | 0x17008007, |
| 560 | 0x0009f602, | 560 | 0x0009f602, |
| @@ -563,7 +563,7 @@ uint32_t nv108_grhub_code[] = { | |||
| 563 | 0x37008006, | 563 | 0x37008006, |
| 564 | 0x0009f602, | 564 | 0x0009f602, |
| 565 | 0x31f404bd, | 565 | 0x31f404bd, |
| 566 | 0x08367e01, | 566 | 0x087c7e01, |
| 567 | 0xf094bd00, | 567 | 0xf094bd00, |
| 568 | 0x00800699, | 568 | 0x00800699, |
| 569 | 0x09f60217, | 569 | 0x09f60217, |
| @@ -572,7 +572,7 @@ uint32_t nv108_grhub_code[] = { | |||
| 572 | 0x20f92f0e, | 572 | 0x20f92f0e, |
| 573 | 0x32f412b2, | 573 | 0x32f412b2, |
| 574 | 0x0232f401, | 574 | 0x0232f401, |
| 575 | 0x0008367e, | 575 | 0x00087c7e, |
| 576 | 0x008020fc, | 576 | 0x008020fc, |
| 577 | 0x02f602c0, | 577 | 0x02f602c0, |
| 578 | 0xf404bd00, | 578 | 0xf404bd00, |
| @@ -580,7 +580,7 @@ uint32_t nv108_grhub_code[] = { | |||
| 580 | 0x23c8130e, | 580 | 0x23c8130e, |
| 581 | 0x0d0bf41f, | 581 | 0x0d0bf41f, |
| 582 | 0xf40131f4, | 582 | 0xf40131f4, |
| 583 | 0x367e0232, | 583 | 0x7c7e0232, |
| 584 | /* 0x054e: chsw_done */ | 584 | /* 0x054e: chsw_done */ |
| 585 | 0x01020008, | 585 | 0x01020008, |
| 586 | 0x02c30080, | 586 | 0x02c30080, |
| @@ -593,7 +593,7 @@ uint32_t nv108_grhub_code[] = { | |||
| 593 | 0xb0ff2a0e, | 593 | 0xb0ff2a0e, |
| 594 | 0x1bf401e4, | 594 | 0x1bf401e4, |
| 595 | 0x7ef2b20c, | 595 | 0x7ef2b20c, |
| 596 | 0xf40007d6, | 596 | 0xf400081c, |
| 597 | /* 0x057a: main_not_ctx_chan */ | 597 | /* 0x057a: main_not_ctx_chan */ |
| 598 | 0xe4b0400e, | 598 | 0xe4b0400e, |
| 599 | 0x2c1bf402, | 599 | 0x2c1bf402, |
| @@ -602,7 +602,7 @@ uint32_t nv108_grhub_code[] = { | |||
| 602 | 0x0009f602, | 602 | 0x0009f602, |
| 603 | 0x32f404bd, | 603 | 0x32f404bd, |
| 604 | 0x0232f401, | 604 | 0x0232f401, |
| 605 | 0x0008367e, | 605 | 0x00087c7e, |
| 606 | 0x99f094bd, | 606 | 0x99f094bd, |
| 607 | 0x17008007, | 607 | 0x17008007, |
| 608 | 0x0009f602, | 608 | 0x0009f602, |
| @@ -642,238 +642,238 @@ uint32_t nv108_grhub_code[] = { | |||
| 642 | /* 0x061a: ih_no_ctxsw */ | 642 | /* 0x061a: ih_no_ctxsw */ |
| 643 | 0xabe40000, | 643 | 0xabe40000, |
| 644 | 0x0bf40400, | 644 | 0x0bf40400, |
| 645 | 0x01004b10, | 645 | 0x07088e56, |
| 646 | 0x448ebfb2, | ||
| 647 | 0x8f7e4001, | ||
| 648 | /* 0x062e: ih_no_fwmthd */ | ||
| 649 | 0x044b0000, | ||
| 650 | 0xffb0bd01, | ||
| 651 | 0x0bf4b4ab, | ||
| 652 | 0x0700800c, | ||
| 653 | 0x000bf603, | ||
| 654 | /* 0x0642: ih_no_other */ | ||
| 655 | 0x004004bd, | ||
| 656 | 0x000af601, | ||
| 657 | 0xf0fc04bd, | ||
| 658 | 0xd0fce0fc, | ||
| 659 | 0xa0fcb0fc, | ||
| 660 | 0x80fc90fc, | ||
| 661 | 0xfc0088fe, | ||
| 662 | 0x0032f480, | ||
| 663 | /* 0x0662: ctx_4170s */ | ||
| 664 | 0xf5f001f8, | ||
| 665 | 0x8effb210, | ||
| 666 | 0x7e404170, | ||
| 667 | 0xf800008f, | ||
| 668 | /* 0x0671: ctx_4170w */ | ||
| 669 | 0x41708e00, | ||
| 670 | 0x00657e40, | 646 | 0x00657e40, |
| 671 | 0xf0ffb200, | 647 | 0x80ffb200, |
| 672 | 0x1bf410f4, | 648 | 0xf6020400, |
| 673 | /* 0x0683: ctx_redswitch */ | ||
| 674 | 0x4e00f8f3, | ||
| 675 | 0xe5f00200, | ||
| 676 | 0x20e5f040, | ||
| 677 | 0x8010e5f0, | ||
| 678 | 0xf6018500, | ||
| 679 | 0x04bd000e, | ||
| 680 | /* 0x069a: ctx_redswitch_delay */ | ||
| 681 | 0xf2b6080f, | ||
| 682 | 0xfd1bf401, | ||
| 683 | 0x0400e5f1, | ||
| 684 | 0x0100e5f1, | ||
| 685 | 0x01850080, | ||
| 686 | 0xbd000ef6, | ||
| 687 | /* 0x06b3: ctx_86c */ | ||
| 688 | 0x8000f804, | ||
| 689 | 0xf6022300, | ||
| 690 | 0x04bd000f, | 649 | 0x04bd000f, |
| 691 | 0x148effb2, | 650 | 0x4007048e, |
| 692 | 0x8f7e408a, | 651 | 0x0000657e, |
| 693 | 0xffb20000, | 652 | 0x0080ffb2, |
| 694 | 0x41a88c8e, | 653 | 0x0ff60203, |
| 654 | 0xc704bd00, | ||
| 655 | 0xee9450fe, | ||
| 656 | 0x07008f02, | ||
| 657 | 0x00efbb40, | ||
| 658 | 0x0000657e, | ||
| 659 | 0x02020080, | ||
| 660 | 0xbd000ff6, | ||
| 661 | 0x7e030f04, | ||
| 662 | 0x4b0002f8, | ||
| 663 | 0xbfb20100, | ||
| 664 | 0x4001448e, | ||
| 695 | 0x00008f7e, | 665 | 0x00008f7e, |
| 696 | /* 0x06d2: ctx_mem */ | 666 | /* 0x0674: ih_no_fwmthd */ |
| 697 | 0x008000f8, | 667 | 0xbd05044b, |
| 698 | 0x0ff60284, | 668 | 0xb4abffb0, |
| 699 | /* 0x06db: ctx_mem_wait */ | 669 | 0x800c0bf4, |
| 700 | 0x8f04bd00, | 670 | 0xf6030700, |
| 701 | 0xcf028400, | 671 | 0x04bd000b, |
| 702 | 0xfffd00ff, | 672 | /* 0x0688: ih_no_other */ |
| 703 | 0xf61bf405, | 673 | 0xf6010040, |
| 704 | /* 0x06ea: ctx_load */ | 674 | 0x04bd000a, |
| 705 | 0x94bd00f8, | 675 | 0xe0fcf0fc, |
| 706 | 0x800599f0, | 676 | 0xb0fcd0fc, |
| 707 | 0xf6023700, | 677 | 0x90fca0fc, |
| 708 | 0x04bd0009, | 678 | 0x88fe80fc, |
| 709 | 0xb87e0c0a, | 679 | 0xf480fc00, |
| 710 | 0xf4bd0000, | 680 | 0x01f80032, |
| 711 | 0x02890080, | 681 | /* 0x06a8: ctx_4170s */ |
| 682 | 0xb210f5f0, | ||
| 683 | 0x41708eff, | ||
| 684 | 0x008f7e40, | ||
| 685 | /* 0x06b7: ctx_4170w */ | ||
| 686 | 0x8e00f800, | ||
| 687 | 0x7e404170, | ||
| 688 | 0xb2000065, | ||
| 689 | 0x10f4f0ff, | ||
| 690 | 0xf8f31bf4, | ||
| 691 | /* 0x06c9: ctx_redswitch */ | ||
| 692 | 0x02004e00, | ||
| 693 | 0xf040e5f0, | ||
| 694 | 0xe5f020e5, | ||
| 695 | 0x85008010, | ||
| 696 | 0x000ef601, | ||
| 697 | 0x080f04bd, | ||
| 698 | /* 0x06e0: ctx_redswitch_delay */ | ||
| 699 | 0xf401f2b6, | ||
| 700 | 0xe5f1fd1b, | ||
| 701 | 0xe5f10400, | ||
| 702 | 0x00800100, | ||
| 703 | 0x0ef60185, | ||
| 704 | 0xf804bd00, | ||
| 705 | /* 0x06f9: ctx_86c */ | ||
| 706 | 0x23008000, | ||
| 707 | 0x000ff602, | ||
| 708 | 0xffb204bd, | ||
| 709 | 0x408a148e, | ||
| 710 | 0x00008f7e, | ||
| 711 | 0x8c8effb2, | ||
| 712 | 0x8f7e41a8, | ||
| 713 | 0x00f80000, | ||
| 714 | /* 0x0718: ctx_mem */ | ||
| 715 | 0x02840080, | ||
| 712 | 0xbd000ff6, | 716 | 0xbd000ff6, |
| 713 | 0xc1008004, | 717 | /* 0x0721: ctx_mem_wait */ |
| 714 | 0x0002f602, | 718 | 0x84008f04, |
| 715 | 0x008004bd, | 719 | 0x00ffcf02, |
| 716 | 0x02f60283, | 720 | 0xf405fffd, |
| 717 | 0x0f04bd00, | 721 | 0x00f8f61b, |
| 718 | 0x06d27e07, | 722 | /* 0x0730: ctx_load */ |
| 719 | 0xc0008000, | 723 | 0x99f094bd, |
| 720 | 0x0002f602, | 724 | 0x37008005, |
| 721 | 0x0bfe04bd, | 725 | 0x0009f602, |
| 722 | 0x1f2af000, | 726 | 0x0c0a04bd, |
| 723 | 0xb60424b6, | 727 | 0x0000b87e, |
| 724 | 0x94bd0220, | 728 | 0x0080f4bd, |
| 725 | 0x800899f0, | 729 | 0x0ff60289, |
| 726 | 0xf6023700, | 730 | 0x8004bd00, |
| 727 | 0x04bd0009, | 731 | 0xf602c100, |
| 728 | 0x02810080, | 732 | 0x04bd0002, |
| 729 | 0xbd0002f6, | 733 | 0x02830080, |
| 730 | 0x0000d204, | ||
| 731 | 0x25f08000, | ||
| 732 | 0x88008002, | ||
| 733 | 0x0002f602, | ||
| 734 | 0x100104bd, | ||
| 735 | 0xf0020042, | ||
| 736 | 0x12fa0223, | ||
| 737 | 0xbd03f805, | ||
| 738 | 0x0899f094, | ||
| 739 | 0x02170080, | ||
| 740 | 0xbd0009f6, | ||
| 741 | 0x81019804, | ||
| 742 | 0x981814b6, | ||
| 743 | 0x25b68002, | ||
| 744 | 0x0512fd08, | ||
| 745 | 0xbd1601b5, | ||
| 746 | 0x0999f094, | ||
| 747 | 0x02370080, | ||
| 748 | 0xbd0009f6, | ||
| 749 | 0x81008004, | ||
| 750 | 0x0001f602, | ||
| 751 | 0x010204bd, | ||
| 752 | 0x02880080, | ||
| 753 | 0xbd0002f6, | 734 | 0xbd0002f6, |
| 754 | 0x01004104, | 735 | 0x7e070f04, |
| 755 | 0xfa0613f0, | 736 | 0x80000718, |
| 756 | 0x03f80501, | 737 | 0xf602c000, |
| 738 | 0x04bd0002, | ||
| 739 | 0xf0000bfe, | ||
| 740 | 0x24b61f2a, | ||
| 741 | 0x0220b604, | ||
| 757 | 0x99f094bd, | 742 | 0x99f094bd, |
| 758 | 0x17008009, | 743 | 0x37008008, |
| 759 | 0x0009f602, | 744 | 0x0009f602, |
| 760 | 0x94bd04bd, | 745 | 0x008004bd, |
| 761 | 0x800599f0, | 746 | 0x02f60281, |
| 747 | 0xd204bd00, | ||
| 748 | 0x80000000, | ||
| 749 | 0x800225f0, | ||
| 750 | 0xf6028800, | ||
| 751 | 0x04bd0002, | ||
| 752 | 0x00421001, | ||
| 753 | 0x0223f002, | ||
| 754 | 0xf80512fa, | ||
| 755 | 0xf094bd03, | ||
| 756 | 0x00800899, | ||
| 757 | 0x09f60217, | ||
| 758 | 0x9804bd00, | ||
| 759 | 0x14b68101, | ||
| 760 | 0x80029818, | ||
| 761 | 0xfd0825b6, | ||
| 762 | 0x01b50512, | ||
| 763 | 0xf094bd16, | ||
| 764 | 0x00800999, | ||
| 765 | 0x09f60237, | ||
| 766 | 0x8004bd00, | ||
| 767 | 0xf6028100, | ||
| 768 | 0x04bd0001, | ||
| 769 | 0x00800102, | ||
| 770 | 0x02f60288, | ||
| 771 | 0x4104bd00, | ||
| 772 | 0x13f00100, | ||
| 773 | 0x0501fa06, | ||
| 774 | 0x94bd03f8, | ||
| 775 | 0x800999f0, | ||
| 762 | 0xf6021700, | 776 | 0xf6021700, |
| 763 | 0x04bd0009, | 777 | 0x04bd0009, |
| 764 | /* 0x07d6: ctx_chan */ | 778 | 0x99f094bd, |
| 765 | 0xea7e00f8, | 779 | 0x17008005, |
| 766 | 0x0c0a0006, | 780 | 0x0009f602, |
| 767 | 0x0000b87e, | 781 | 0x00f804bd, |
| 768 | 0xd27e050f, | 782 | /* 0x081c: ctx_chan */ |
| 769 | 0x00f80006, | 783 | 0x0007307e, |
| 770 | /* 0x07e8: ctx_mmio_exec */ | 784 | 0xb87e0c0a, |
| 771 | 0x80410398, | 785 | 0x050f0000, |
| 786 | 0x0007187e, | ||
| 787 | /* 0x082e: ctx_mmio_exec */ | ||
| 788 | 0x039800f8, | ||
| 789 | 0x81008041, | ||
| 790 | 0x0003f602, | ||
| 791 | 0x34bd04bd, | ||
| 792 | /* 0x083c: ctx_mmio_loop */ | ||
| 793 | 0xf4ff34c4, | ||
| 794 | 0x00450e1b, | ||
| 795 | 0x0653f002, | ||
| 796 | 0xf80535fa, | ||
| 797 | /* 0x084d: ctx_mmio_pull */ | ||
| 798 | 0x804e9803, | ||
| 799 | 0x7e814f98, | ||
| 800 | 0xb600008f, | ||
| 801 | 0x12b60830, | ||
| 802 | 0xdf1bf401, | ||
| 803 | /* 0x0860: ctx_mmio_done */ | ||
| 804 | 0x80160398, | ||
| 772 | 0xf6028100, | 805 | 0xf6028100, |
| 773 | 0x04bd0003, | 806 | 0x04bd0003, |
| 774 | /* 0x07f6: ctx_mmio_loop */ | 807 | 0x414000b5, |
| 775 | 0x34c434bd, | 808 | 0x13f00100, |
| 776 | 0x0e1bf4ff, | 809 | 0x0601fa06, |
| 777 | 0xf0020045, | 810 | 0x00f803f8, |
| 778 | 0x35fa0653, | 811 | /* 0x087c: ctx_xfer */ |
| 779 | /* 0x0807: ctx_mmio_pull */ | 812 | 0x0080040e, |
| 780 | 0x9803f805, | 813 | 0x0ef60302, |
| 781 | 0x4f98804e, | 814 | /* 0x0887: ctx_xfer_idle */ |
| 782 | 0x008f7e81, | 815 | 0x8e04bd00, |
| 783 | 0x0830b600, | 816 | 0xcf030000, |
| 784 | 0xf40112b6, | 817 | 0xe4f100ee, |
| 785 | /* 0x081a: ctx_mmio_done */ | 818 | 0x1bf42000, |
| 786 | 0x0398df1b, | 819 | 0x0611f4f5, |
| 787 | 0x81008016, | 820 | /* 0x089b: ctx_xfer_pre */ |
| 788 | 0x0003f602, | 821 | 0x0f0c02f4, |
| 789 | 0x00b504bd, | 822 | 0x06f97e10, |
| 790 | 0x01004140, | 823 | 0x1b11f400, |
| 791 | 0xfa0613f0, | 824 | /* 0x08a4: ctx_xfer_pre_load */ |
| 792 | 0x03f80601, | 825 | 0xa87e020f, |
| 793 | /* 0x0836: ctx_xfer */ | 826 | 0xb77e0006, |
| 794 | 0x040e00f8, | 827 | 0xc97e0006, |
| 795 | 0x03020080, | 828 | 0xf4bd0006, |
| 796 | 0xbd000ef6, | 829 | 0x0006a87e, |
| 797 | /* 0x0841: ctx_xfer_idle */ | 830 | 0x0007307e, |
| 798 | 0x00008e04, | 831 | /* 0x08bc: ctx_xfer_exec */ |
| 799 | 0x00eecf03, | 832 | 0xbd160198, |
| 800 | 0x2000e4f1, | 833 | 0x05008024, |
| 801 | 0xf4f51bf4, | 834 | 0x0002f601, |
| 802 | 0x02f40611, | 835 | 0x1fb204bd, |
| 803 | /* 0x0855: ctx_xfer_pre */ | 836 | 0x41a5008e, |
| 804 | 0x7e100f0c, | ||
| 805 | 0xf40006b3, | ||
| 806 | /* 0x085e: ctx_xfer_pre_load */ | ||
| 807 | 0x020f1b11, | ||
| 808 | 0x0006627e, | ||
| 809 | 0x0006717e, | ||
| 810 | 0x0006837e, | ||
| 811 | 0x627ef4bd, | ||
| 812 | 0xea7e0006, | ||
| 813 | /* 0x0876: ctx_xfer_exec */ | ||
| 814 | 0x01980006, | ||
| 815 | 0x8024bd16, | ||
| 816 | 0xf6010500, | ||
| 817 | 0x04bd0002, | ||
| 818 | 0x008e1fb2, | ||
| 819 | 0x8f7e41a5, | ||
| 820 | 0xfcf00000, | ||
| 821 | 0x022cf001, | ||
| 822 | 0xfd0124b6, | ||
| 823 | 0xffb205f2, | ||
| 824 | 0x41a5048e, | ||
| 825 | 0x00008f7e, | 837 | 0x00008f7e, |
| 826 | 0x0002167e, | 838 | 0xf001fcf0, |
| 827 | 0xfc8024bd, | 839 | 0x24b6022c, |
| 828 | 0x02f60247, | 840 | 0x05f2fd01, |
| 829 | 0xf004bd00, | 841 | 0x048effb2, |
| 830 | 0x20b6012c, | 842 | 0x8f7e41a5, |
| 831 | 0x4afc8003, | 843 | 0x167e0000, |
| 832 | 0x0002f602, | 844 | 0x24bd0002, |
| 833 | 0xacf004bd, | 845 | 0x0247fc80, |
| 834 | 0x06a5f001, | 846 | 0xbd0002f6, |
| 835 | 0x0c98000b, | 847 | 0x012cf004, |
| 836 | 0x010d9800, | 848 | 0x800320b6, |
| 837 | 0x3d7e000e, | 849 | 0xf6024afc, |
| 838 | 0x080a0001, | 850 | 0x04bd0002, |
| 839 | 0x0000ec7e, | 851 | 0xf001acf0, |
| 840 | 0x00020a7e, | 852 | 0x000b06a5, |
| 841 | 0x0a1201f4, | 853 | 0x98000c98, |
| 842 | 0x00b87e0c, | 854 | 0x000e010d, |
| 843 | 0x7e050f00, | 855 | 0x00013d7e, |
| 844 | 0xf40006d2, | 856 | 0xec7e080a, |
| 845 | /* 0x08f2: ctx_xfer_post */ | 857 | 0x0a7e0000, |
| 846 | 0x020f2d02, | 858 | 0x01f40002, |
| 847 | 0x0006627e, | 859 | 0x7e0c0a12, |
| 848 | 0xb37ef4bd, | 860 | 0x0f0000b8, |
| 849 | 0x277e0006, | 861 | 0x07187e05, |
| 850 | 0x717e0002, | 862 | 0x2d02f400, |
| 863 | /* 0x0938: ctx_xfer_post */ | ||
| 864 | 0xa87e020f, | ||
| 851 | 0xf4bd0006, | 865 | 0xf4bd0006, |
| 852 | 0x0006627e, | 866 | 0x0006f97e, |
| 853 | 0x981011f4, | 867 | 0x0002277e, |
| 854 | 0x11fd4001, | 868 | 0x0006b77e, |
| 855 | 0x070bf405, | 869 | 0xa87ef4bd, |
| 856 | 0x0007e87e, | 870 | 0x11f40006, |
| 857 | /* 0x091c: ctx_xfer_no_post_mmio */ | 871 | 0x40019810, |
| 858 | /* 0x091c: ctx_xfer_done */ | 872 | 0xf40511fd, |
| 859 | 0x000000f8, | 873 | 0x2e7e070b, |
| 860 | 0x00000000, | 874 | /* 0x0962: ctx_xfer_no_post_mmio */ |
| 861 | 0x00000000, | 875 | /* 0x0962: ctx_xfer_done */ |
| 862 | 0x00000000, | 876 | 0x00f80008, |
| 863 | 0x00000000, | ||
| 864 | 0x00000000, | ||
| 865 | 0x00000000, | ||
| 866 | 0x00000000, | ||
| 867 | 0x00000000, | ||
| 868 | 0x00000000, | ||
| 869 | 0x00000000, | ||
| 870 | 0x00000000, | ||
| 871 | 0x00000000, | ||
| 872 | 0x00000000, | ||
| 873 | 0x00000000, | ||
| 874 | 0x00000000, | ||
| 875 | 0x00000000, | ||
| 876 | 0x00000000, | ||
| 877 | 0x00000000, | 877 | 0x00000000, |
| 878 | 0x00000000, | 878 | 0x00000000, |
| 879 | 0x00000000, | 879 | 0x00000000, |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvc0.fuc.h b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvc0.fuc.h index f8f7b278a13f..92dfe6a4ac87 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvc0.fuc.h +++ b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvc0.fuc.h | |||
| @@ -528,10 +528,10 @@ uint32_t nvc0_grhub_code[] = { | |||
| 528 | 0x0001d001, | 528 | 0x0001d001, |
| 529 | 0x17f104bd, | 529 | 0x17f104bd, |
| 530 | 0xf7f00100, | 530 | 0xf7f00100, |
| 531 | 0xb521f502, | 531 | 0x0d21f502, |
| 532 | 0xc721f507, | 532 | 0x1f21f508, |
| 533 | 0x10f7f007, | 533 | 0x10f7f008, |
| 534 | 0x081421f5, | 534 | 0x086c21f5, |
| 535 | 0x98000e98, | 535 | 0x98000e98, |
| 536 | 0x21f5010f, | 536 | 0x21f5010f, |
| 537 | 0x14950150, | 537 | 0x14950150, |
| @@ -574,9 +574,9 @@ uint32_t nvc0_grhub_code[] = { | |||
| 574 | 0xb6800040, | 574 | 0xb6800040, |
| 575 | 0x1bf40132, | 575 | 0x1bf40132, |
| 576 | 0x00f7f0be, | 576 | 0x00f7f0be, |
| 577 | 0x081421f5, | 577 | 0x086c21f5, |
| 578 | 0xf500f7f0, | 578 | 0xf500f7f0, |
| 579 | 0xf107b521, | 579 | 0xf1080d21, |
| 580 | 0xf0010007, | 580 | 0xf0010007, |
| 581 | 0x01d00203, | 581 | 0x01d00203, |
| 582 | 0xbd04bd00, | 582 | 0xbd04bd00, |
| @@ -610,8 +610,8 @@ uint32_t nvc0_grhub_code[] = { | |||
| 610 | 0x09d00203, | 610 | 0x09d00203, |
| 611 | 0xf404bd00, | 611 | 0xf404bd00, |
| 612 | 0x31f40132, | 612 | 0x31f40132, |
| 613 | 0xe821f502, | 613 | 0x4021f502, |
| 614 | 0xf094bd09, | 614 | 0xf094bd0a, |
| 615 | 0x07f10799, | 615 | 0x07f10799, |
| 616 | 0x03f01700, | 616 | 0x03f01700, |
| 617 | 0x0009d002, | 617 | 0x0009d002, |
| @@ -621,7 +621,7 @@ uint32_t nvc0_grhub_code[] = { | |||
| 621 | 0x0203f00f, | 621 | 0x0203f00f, |
| 622 | 0xbd0009d0, | 622 | 0xbd0009d0, |
| 623 | 0x0131f404, | 623 | 0x0131f404, |
| 624 | 0x09e821f5, | 624 | 0x0a4021f5, |
| 625 | 0x99f094bd, | 625 | 0x99f094bd, |
| 626 | 0x0007f106, | 626 | 0x0007f106, |
| 627 | 0x0203f017, | 627 | 0x0203f017, |
| @@ -631,7 +631,7 @@ uint32_t nvc0_grhub_code[] = { | |||
| 631 | 0x12b920f9, | 631 | 0x12b920f9, |
| 632 | 0x0132f402, | 632 | 0x0132f402, |
| 633 | 0xf50232f4, | 633 | 0xf50232f4, |
| 634 | 0xfc09e821, | 634 | 0xfc0a4021, |
| 635 | 0x0007f120, | 635 | 0x0007f120, |
| 636 | 0x0203f0c0, | 636 | 0x0203f0c0, |
| 637 | 0xbd0002d0, | 637 | 0xbd0002d0, |
| @@ -640,7 +640,7 @@ uint32_t nvc0_grhub_code[] = { | |||
| 640 | 0xf41f23c8, | 640 | 0xf41f23c8, |
| 641 | 0x31f40d0b, | 641 | 0x31f40d0b, |
| 642 | 0x0232f401, | 642 | 0x0232f401, |
| 643 | 0x09e821f5, | 643 | 0x0a4021f5, |
| 644 | /* 0x063c: chsw_done */ | 644 | /* 0x063c: chsw_done */ |
| 645 | 0xf10127f0, | 645 | 0xf10127f0, |
| 646 | 0xf0c30007, | 646 | 0xf0c30007, |
| @@ -654,7 +654,7 @@ uint32_t nvc0_grhub_code[] = { | |||
| 654 | /* 0x0660: main_not_ctx_switch */ | 654 | /* 0x0660: main_not_ctx_switch */ |
| 655 | 0xf401e4b0, | 655 | 0xf401e4b0, |
| 656 | 0xf2b90d1b, | 656 | 0xf2b90d1b, |
| 657 | 0x7821f502, | 657 | 0xd021f502, |
| 658 | 0x460ef409, | 658 | 0x460ef409, |
| 659 | /* 0x0670: main_not_ctx_chan */ | 659 | /* 0x0670: main_not_ctx_chan */ |
| 660 | 0xf402e4b0, | 660 | 0xf402e4b0, |
| @@ -664,8 +664,8 @@ uint32_t nvc0_grhub_code[] = { | |||
| 664 | 0x09d00203, | 664 | 0x09d00203, |
| 665 | 0xf404bd00, | 665 | 0xf404bd00, |
| 666 | 0x32f40132, | 666 | 0x32f40132, |
| 667 | 0xe821f502, | 667 | 0x4021f502, |
| 668 | 0xf094bd09, | 668 | 0xf094bd0a, |
| 669 | 0x07f10799, | 669 | 0x07f10799, |
| 670 | 0x03f01700, | 670 | 0x03f01700, |
| 671 | 0x0009d002, | 671 | 0x0009d002, |
| @@ -710,18 +710,40 @@ uint32_t nvc0_grhub_code[] = { | |||
| 710 | /* 0x072b: ih_no_ctxsw */ | 710 | /* 0x072b: ih_no_ctxsw */ |
| 711 | 0xe40421f4, | 711 | 0xe40421f4, |
| 712 | 0xf40400ab, | 712 | 0xf40400ab, |
| 713 | 0xb7f1140b, | 713 | 0xe7f16c0b, |
| 714 | 0xe3f00708, | ||
| 715 | 0x6821f440, | ||
| 716 | 0xf102ffb9, | ||
| 717 | 0xf0040007, | ||
| 718 | 0x0fd00203, | ||
| 719 | 0xf104bd00, | ||
| 720 | 0xf00704e7, | ||
| 721 | 0x21f440e3, | ||
| 722 | 0x02ffb968, | ||
| 723 | 0x030007f1, | ||
| 724 | 0xd00203f0, | ||
| 725 | 0x04bd000f, | ||
| 726 | 0x9450fec7, | ||
| 727 | 0xf7f102ee, | ||
| 728 | 0xf3f00700, | ||
| 729 | 0x00efbb40, | ||
| 730 | 0xf16821f4, | ||
| 731 | 0xf0020007, | ||
| 732 | 0x0fd00203, | ||
| 733 | 0xf004bd00, | ||
| 734 | 0x21f503f7, | ||
| 735 | 0xb7f1037e, | ||
| 714 | 0xbfb90100, | 736 | 0xbfb90100, |
| 715 | 0x44e7f102, | 737 | 0x44e7f102, |
| 716 | 0x40e3f001, | 738 | 0x40e3f001, |
| 717 | /* 0x0743: ih_no_fwmthd */ | 739 | /* 0x079b: ih_no_fwmthd */ |
| 718 | 0xf19d21f4, | 740 | 0xf19d21f4, |
| 719 | 0xbd0104b7, | 741 | 0xbd0504b7, |
| 720 | 0xb4abffb0, | 742 | 0xb4abffb0, |
| 721 | 0xf10f0bf4, | 743 | 0xf10f0bf4, |
| 722 | 0xf0070007, | 744 | 0xf0070007, |
| 723 | 0x0bd00303, | 745 | 0x0bd00303, |
| 724 | /* 0x075b: ih_no_other */ | 746 | /* 0x07b3: ih_no_other */ |
| 725 | 0xf104bd00, | 747 | 0xf104bd00, |
| 726 | 0xf0010007, | 748 | 0xf0010007, |
| 727 | 0x0ad00003, | 749 | 0x0ad00003, |
| @@ -731,36 +753,36 @@ uint32_t nvc0_grhub_code[] = { | |||
| 731 | 0xfc90fca0, | 753 | 0xfc90fca0, |
| 732 | 0x0088fe80, | 754 | 0x0088fe80, |
| 733 | 0x32f480fc, | 755 | 0x32f480fc, |
| 734 | /* 0x077f: ctx_4160s */ | 756 | /* 0x07d7: ctx_4160s */ |
| 735 | 0xf001f800, | 757 | 0xf001f800, |
| 736 | 0xffb901f7, | 758 | 0xffb901f7, |
| 737 | 0x60e7f102, | 759 | 0x60e7f102, |
| 738 | 0x40e3f041, | 760 | 0x40e3f041, |
| 739 | /* 0x078f: ctx_4160s_wait */ | 761 | /* 0x07e7: ctx_4160s_wait */ |
| 740 | 0xf19d21f4, | 762 | 0xf19d21f4, |
| 741 | 0xf04160e7, | 763 | 0xf04160e7, |
| 742 | 0x21f440e3, | 764 | 0x21f440e3, |
| 743 | 0x02ffb968, | 765 | 0x02ffb968, |
| 744 | 0xf404ffc8, | 766 | 0xf404ffc8, |
| 745 | 0x00f8f00b, | 767 | 0x00f8f00b, |
| 746 | /* 0x07a4: ctx_4160c */ | 768 | /* 0x07fc: ctx_4160c */ |
| 747 | 0xffb9f4bd, | 769 | 0xffb9f4bd, |
| 748 | 0x60e7f102, | 770 | 0x60e7f102, |
| 749 | 0x40e3f041, | 771 | 0x40e3f041, |
| 750 | 0xf89d21f4, | 772 | 0xf89d21f4, |
| 751 | /* 0x07b5: ctx_4170s */ | 773 | /* 0x080d: ctx_4170s */ |
| 752 | 0x10f5f000, | 774 | 0x10f5f000, |
| 753 | 0xf102ffb9, | 775 | 0xf102ffb9, |
| 754 | 0xf04170e7, | 776 | 0xf04170e7, |
| 755 | 0x21f440e3, | 777 | 0x21f440e3, |
| 756 | /* 0x07c7: ctx_4170w */ | 778 | /* 0x081f: ctx_4170w */ |
| 757 | 0xf100f89d, | 779 | 0xf100f89d, |
| 758 | 0xf04170e7, | 780 | 0xf04170e7, |
| 759 | 0x21f440e3, | 781 | 0x21f440e3, |
| 760 | 0x02ffb968, | 782 | 0x02ffb968, |
| 761 | 0xf410f4f0, | 783 | 0xf410f4f0, |
| 762 | 0x00f8f01b, | 784 | 0x00f8f01b, |
| 763 | /* 0x07dc: ctx_redswitch */ | 785 | /* 0x0834: ctx_redswitch */ |
| 764 | 0x0200e7f1, | 786 | 0x0200e7f1, |
| 765 | 0xf040e5f0, | 787 | 0xf040e5f0, |
| 766 | 0xe5f020e5, | 788 | 0xe5f020e5, |
| @@ -768,7 +790,7 @@ uint32_t nvc0_grhub_code[] = { | |||
| 768 | 0x0103f085, | 790 | 0x0103f085, |
| 769 | 0xbd000ed0, | 791 | 0xbd000ed0, |
| 770 | 0x08f7f004, | 792 | 0x08f7f004, |
| 771 | /* 0x07f8: ctx_redswitch_delay */ | 793 | /* 0x0850: ctx_redswitch_delay */ |
| 772 | 0xf401f2b6, | 794 | 0xf401f2b6, |
| 773 | 0xe5f1fd1b, | 795 | 0xe5f1fd1b, |
| 774 | 0xe5f10400, | 796 | 0xe5f10400, |
| @@ -776,7 +798,7 @@ uint32_t nvc0_grhub_code[] = { | |||
| 776 | 0x03f08500, | 798 | 0x03f08500, |
| 777 | 0x000ed001, | 799 | 0x000ed001, |
| 778 | 0x00f804bd, | 800 | 0x00f804bd, |
| 779 | /* 0x0814: ctx_86c */ | 801 | /* 0x086c: ctx_86c */ |
| 780 | 0x1b0007f1, | 802 | 0x1b0007f1, |
| 781 | 0xd00203f0, | 803 | 0xd00203f0, |
| 782 | 0x04bd000f, | 804 | 0x04bd000f, |
| @@ -787,16 +809,16 @@ uint32_t nvc0_grhub_code[] = { | |||
| 787 | 0xa86ce7f1, | 809 | 0xa86ce7f1, |
| 788 | 0xf441e3f0, | 810 | 0xf441e3f0, |
| 789 | 0x00f89d21, | 811 | 0x00f89d21, |
| 790 | /* 0x083c: ctx_mem */ | 812 | /* 0x0894: ctx_mem */ |
| 791 | 0x840007f1, | 813 | 0x840007f1, |
| 792 | 0xd00203f0, | 814 | 0xd00203f0, |
| 793 | 0x04bd000f, | 815 | 0x04bd000f, |
| 794 | /* 0x0848: ctx_mem_wait */ | 816 | /* 0x08a0: ctx_mem_wait */ |
| 795 | 0x8400f7f1, | 817 | 0x8400f7f1, |
| 796 | 0xcf02f3f0, | 818 | 0xcf02f3f0, |
| 797 | 0xfffd00ff, | 819 | 0xfffd00ff, |
| 798 | 0xf31bf405, | 820 | 0xf31bf405, |
| 799 | /* 0x085a: ctx_load */ | 821 | /* 0x08b2: ctx_load */ |
| 800 | 0x94bd00f8, | 822 | 0x94bd00f8, |
| 801 | 0xf10599f0, | 823 | 0xf10599f0, |
| 802 | 0xf00f0007, | 824 | 0xf00f0007, |
| @@ -814,7 +836,7 @@ uint32_t nvc0_grhub_code[] = { | |||
| 814 | 0x02d00203, | 836 | 0x02d00203, |
| 815 | 0xf004bd00, | 837 | 0xf004bd00, |
| 816 | 0x21f507f7, | 838 | 0x21f507f7, |
| 817 | 0x07f1083c, | 839 | 0x07f10894, |
| 818 | 0x03f0c000, | 840 | 0x03f0c000, |
| 819 | 0x0002d002, | 841 | 0x0002d002, |
| 820 | 0x0bfe04bd, | 842 | 0x0bfe04bd, |
| @@ -869,31 +891,31 @@ uint32_t nvc0_grhub_code[] = { | |||
| 869 | 0x03f01700, | 891 | 0x03f01700, |
| 870 | 0x0009d002, | 892 | 0x0009d002, |
| 871 | 0x00f804bd, | 893 | 0x00f804bd, |
| 872 | /* 0x0978: ctx_chan */ | 894 | /* 0x09d0: ctx_chan */ |
| 873 | 0x077f21f5, | 895 | 0x07d721f5, |
| 874 | 0x085a21f5, | 896 | 0x08b221f5, |
| 875 | 0xf40ca7f0, | 897 | 0xf40ca7f0, |
| 876 | 0xf7f0d021, | 898 | 0xf7f0d021, |
| 877 | 0x3c21f505, | 899 | 0x9421f505, |
| 878 | 0xa421f508, | 900 | 0xfc21f508, |
| 879 | /* 0x0993: ctx_mmio_exec */ | 901 | /* 0x09eb: ctx_mmio_exec */ |
| 880 | 0x9800f807, | 902 | 0x9800f807, |
| 881 | 0x07f14103, | 903 | 0x07f14103, |
| 882 | 0x03f08100, | 904 | 0x03f08100, |
| 883 | 0x0003d002, | 905 | 0x0003d002, |
| 884 | 0x34bd04bd, | 906 | 0x34bd04bd, |
| 885 | /* 0x09a4: ctx_mmio_loop */ | 907 | /* 0x09fc: ctx_mmio_loop */ |
| 886 | 0xf4ff34c4, | 908 | 0xf4ff34c4, |
| 887 | 0x57f10f1b, | 909 | 0x57f10f1b, |
| 888 | 0x53f00200, | 910 | 0x53f00200, |
| 889 | 0x0535fa06, | 911 | 0x0535fa06, |
| 890 | /* 0x09b6: ctx_mmio_pull */ | 912 | /* 0x0a0e: ctx_mmio_pull */ |
| 891 | 0x4e9803f8, | 913 | 0x4e9803f8, |
| 892 | 0x814f9880, | 914 | 0x814f9880, |
| 893 | 0xb69d21f4, | 915 | 0xb69d21f4, |
| 894 | 0x12b60830, | 916 | 0x12b60830, |
| 895 | 0xdf1bf401, | 917 | 0xdf1bf401, |
| 896 | /* 0x09c8: ctx_mmio_done */ | 918 | /* 0x0a20: ctx_mmio_done */ |
| 897 | 0xf1160398, | 919 | 0xf1160398, |
| 898 | 0xf0810007, | 920 | 0xf0810007, |
| 899 | 0x03d00203, | 921 | 0x03d00203, |
| @@ -902,30 +924,30 @@ uint32_t nvc0_grhub_code[] = { | |||
| 902 | 0x13f00100, | 924 | 0x13f00100, |
| 903 | 0x0601fa06, | 925 | 0x0601fa06, |
| 904 | 0x00f803f8, | 926 | 0x00f803f8, |
| 905 | /* 0x09e8: ctx_xfer */ | 927 | /* 0x0a40: ctx_xfer */ |
| 906 | 0xf104e7f0, | 928 | 0xf104e7f0, |
| 907 | 0xf0020007, | 929 | 0xf0020007, |
| 908 | 0x0ed00303, | 930 | 0x0ed00303, |
| 909 | /* 0x09f7: ctx_xfer_idle */ | 931 | /* 0x0a4f: ctx_xfer_idle */ |
| 910 | 0xf104bd00, | 932 | 0xf104bd00, |
| 911 | 0xf00000e7, | 933 | 0xf00000e7, |
| 912 | 0xeecf03e3, | 934 | 0xeecf03e3, |
| 913 | 0x00e4f100, | 935 | 0x00e4f100, |
| 914 | 0xf21bf420, | 936 | 0xf21bf420, |
| 915 | 0xf40611f4, | 937 | 0xf40611f4, |
| 916 | /* 0x0a0e: ctx_xfer_pre */ | 938 | /* 0x0a66: ctx_xfer_pre */ |
| 917 | 0xf7f01102, | 939 | 0xf7f01102, |
| 918 | 0x1421f510, | 940 | 0x6c21f510, |
| 919 | 0x7f21f508, | 941 | 0xd721f508, |
| 920 | 0x1c11f407, | 942 | 0x1c11f407, |
| 921 | /* 0x0a1c: ctx_xfer_pre_load */ | 943 | /* 0x0a74: ctx_xfer_pre_load */ |
| 922 | 0xf502f7f0, | 944 | 0xf502f7f0, |
| 923 | 0xf507b521, | 945 | 0xf5080d21, |
| 924 | 0xf507c721, | 946 | 0xf5081f21, |
| 925 | 0xbd07dc21, | 947 | 0xbd083421, |
| 926 | 0xb521f5f4, | 948 | 0x0d21f5f4, |
| 927 | 0x5a21f507, | 949 | 0xb221f508, |
| 928 | /* 0x0a35: ctx_xfer_exec */ | 950 | /* 0x0a8d: ctx_xfer_exec */ |
| 929 | 0x16019808, | 951 | 0x16019808, |
| 930 | 0x07f124bd, | 952 | 0x07f124bd, |
| 931 | 0x03f00500, | 953 | 0x03f00500, |
| @@ -960,23 +982,65 @@ uint32_t nvc0_grhub_code[] = { | |||
| 960 | 0x1301f402, | 982 | 0x1301f402, |
| 961 | 0xf40ca7f0, | 983 | 0xf40ca7f0, |
| 962 | 0xf7f0d021, | 984 | 0xf7f0d021, |
| 963 | 0x3c21f505, | 985 | 0x9421f505, |
| 964 | 0x3202f408, | 986 | 0x3202f408, |
| 965 | /* 0x0ac4: ctx_xfer_post */ | 987 | /* 0x0b1c: ctx_xfer_post */ |
| 966 | 0xf502f7f0, | 988 | 0xf502f7f0, |
| 967 | 0xbd07b521, | 989 | 0xbd080d21, |
| 968 | 0x1421f5f4, | 990 | 0x6c21f5f4, |
| 969 | 0x7f21f508, | 991 | 0x7f21f508, |
| 970 | 0xc721f502, | 992 | 0x1f21f502, |
| 971 | 0xf5f4bd07, | 993 | 0xf5f4bd08, |
| 972 | 0xf407b521, | 994 | 0xf4080d21, |
| 973 | 0x01981011, | 995 | 0x01981011, |
| 974 | 0x0511fd40, | 996 | 0x0511fd40, |
| 975 | 0xf5070bf4, | 997 | 0xf5070bf4, |
| 976 | /* 0x0aef: ctx_xfer_no_post_mmio */ | 998 | /* 0x0b47: ctx_xfer_no_post_mmio */ |
| 977 | 0xf5099321, | 999 | 0xf509eb21, |
| 978 | /* 0x0af3: ctx_xfer_done */ | 1000 | /* 0x0b4b: ctx_xfer_done */ |
| 979 | 0xf807a421, | 1001 | 0xf807fc21, |
| 1002 | 0x00000000, | ||
| 1003 | 0x00000000, | ||
| 1004 | 0x00000000, | ||
| 1005 | 0x00000000, | ||
| 1006 | 0x00000000, | ||
| 1007 | 0x00000000, | ||
| 1008 | 0x00000000, | ||
| 1009 | 0x00000000, | ||
| 1010 | 0x00000000, | ||
| 1011 | 0x00000000, | ||
| 1012 | 0x00000000, | ||
| 1013 | 0x00000000, | ||
| 1014 | 0x00000000, | ||
| 1015 | 0x00000000, | ||
| 1016 | 0x00000000, | ||
| 1017 | 0x00000000, | ||
| 1018 | 0x00000000, | ||
| 1019 | 0x00000000, | ||
| 1020 | 0x00000000, | ||
| 1021 | 0x00000000, | ||
| 1022 | 0x00000000, | ||
| 1023 | 0x00000000, | ||
| 1024 | 0x00000000, | ||
| 1025 | 0x00000000, | ||
| 1026 | 0x00000000, | ||
| 1027 | 0x00000000, | ||
| 1028 | 0x00000000, | ||
| 1029 | 0x00000000, | ||
| 1030 | 0x00000000, | ||
| 1031 | 0x00000000, | ||
| 1032 | 0x00000000, | ||
| 1033 | 0x00000000, | ||
| 1034 | 0x00000000, | ||
| 1035 | 0x00000000, | ||
| 1036 | 0x00000000, | ||
| 1037 | 0x00000000, | ||
| 1038 | 0x00000000, | ||
| 1039 | 0x00000000, | ||
| 1040 | 0x00000000, | ||
| 1041 | 0x00000000, | ||
| 1042 | 0x00000000, | ||
| 1043 | 0x00000000, | ||
| 980 | 0x00000000, | 1044 | 0x00000000, |
| 981 | 0x00000000, | 1045 | 0x00000000, |
| 982 | 0x00000000, | 1046 | 0x00000000, |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvd7.fuc.h b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvd7.fuc.h index 624215a005b0..62b0c7601d8b 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvd7.fuc.h +++ b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvd7.fuc.h | |||
| @@ -528,10 +528,10 @@ uint32_t nvd7_grhub_code[] = { | |||
| 528 | 0x0001d001, | 528 | 0x0001d001, |
| 529 | 0x17f104bd, | 529 | 0x17f104bd, |
| 530 | 0xf7f00100, | 530 | 0xf7f00100, |
| 531 | 0xb521f502, | 531 | 0x0d21f502, |
| 532 | 0xc721f507, | 532 | 0x1f21f508, |
| 533 | 0x10f7f007, | 533 | 0x10f7f008, |
| 534 | 0x081421f5, | 534 | 0x086c21f5, |
| 535 | 0x98000e98, | 535 | 0x98000e98, |
| 536 | 0x21f5010f, | 536 | 0x21f5010f, |
| 537 | 0x14950150, | 537 | 0x14950150, |
| @@ -574,9 +574,9 @@ uint32_t nvd7_grhub_code[] = { | |||
| 574 | 0xb6800040, | 574 | 0xb6800040, |
| 575 | 0x1bf40132, | 575 | 0x1bf40132, |
| 576 | 0x00f7f0be, | 576 | 0x00f7f0be, |
| 577 | 0x081421f5, | 577 | 0x086c21f5, |
| 578 | 0xf500f7f0, | 578 | 0xf500f7f0, |
| 579 | 0xf107b521, | 579 | 0xf1080d21, |
| 580 | 0xf0010007, | 580 | 0xf0010007, |
| 581 | 0x01d00203, | 581 | 0x01d00203, |
| 582 | 0xbd04bd00, | 582 | 0xbd04bd00, |
| @@ -610,8 +610,8 @@ uint32_t nvd7_grhub_code[] = { | |||
| 610 | 0x09d00203, | 610 | 0x09d00203, |
| 611 | 0xf404bd00, | 611 | 0xf404bd00, |
| 612 | 0x31f40132, | 612 | 0x31f40132, |
| 613 | 0xe821f502, | 613 | 0x4021f502, |
| 614 | 0xf094bd09, | 614 | 0xf094bd0a, |
| 615 | 0x07f10799, | 615 | 0x07f10799, |
| 616 | 0x03f01700, | 616 | 0x03f01700, |
| 617 | 0x0009d002, | 617 | 0x0009d002, |
| @@ -621,7 +621,7 @@ uint32_t nvd7_grhub_code[] = { | |||
| 621 | 0x0203f00f, | 621 | 0x0203f00f, |
| 622 | 0xbd0009d0, | 622 | 0xbd0009d0, |
| 623 | 0x0131f404, | 623 | 0x0131f404, |
| 624 | 0x09e821f5, | 624 | 0x0a4021f5, |
| 625 | 0x99f094bd, | 625 | 0x99f094bd, |
| 626 | 0x0007f106, | 626 | 0x0007f106, |
| 627 | 0x0203f017, | 627 | 0x0203f017, |
| @@ -631,7 +631,7 @@ uint32_t nvd7_grhub_code[] = { | |||
| 631 | 0x12b920f9, | 631 | 0x12b920f9, |
| 632 | 0x0132f402, | 632 | 0x0132f402, |
| 633 | 0xf50232f4, | 633 | 0xf50232f4, |
| 634 | 0xfc09e821, | 634 | 0xfc0a4021, |
| 635 | 0x0007f120, | 635 | 0x0007f120, |
| 636 | 0x0203f0c0, | 636 | 0x0203f0c0, |
| 637 | 0xbd0002d0, | 637 | 0xbd0002d0, |
| @@ -640,7 +640,7 @@ uint32_t nvd7_grhub_code[] = { | |||
| 640 | 0xf41f23c8, | 640 | 0xf41f23c8, |
| 641 | 0x31f40d0b, | 641 | 0x31f40d0b, |
| 642 | 0x0232f401, | 642 | 0x0232f401, |
| 643 | 0x09e821f5, | 643 | 0x0a4021f5, |
| 644 | /* 0x063c: chsw_done */ | 644 | /* 0x063c: chsw_done */ |
| 645 | 0xf10127f0, | 645 | 0xf10127f0, |
| 646 | 0xf0c30007, | 646 | 0xf0c30007, |
| @@ -654,7 +654,7 @@ uint32_t nvd7_grhub_code[] = { | |||
| 654 | /* 0x0660: main_not_ctx_switch */ | 654 | /* 0x0660: main_not_ctx_switch */ |
| 655 | 0xf401e4b0, | 655 | 0xf401e4b0, |
| 656 | 0xf2b90d1b, | 656 | 0xf2b90d1b, |
| 657 | 0x7821f502, | 657 | 0xd021f502, |
| 658 | 0x460ef409, | 658 | 0x460ef409, |
| 659 | /* 0x0670: main_not_ctx_chan */ | 659 | /* 0x0670: main_not_ctx_chan */ |
| 660 | 0xf402e4b0, | 660 | 0xf402e4b0, |
| @@ -664,8 +664,8 @@ uint32_t nvd7_grhub_code[] = { | |||
| 664 | 0x09d00203, | 664 | 0x09d00203, |
| 665 | 0xf404bd00, | 665 | 0xf404bd00, |
| 666 | 0x32f40132, | 666 | 0x32f40132, |
| 667 | 0xe821f502, | 667 | 0x4021f502, |
| 668 | 0xf094bd09, | 668 | 0xf094bd0a, |
| 669 | 0x07f10799, | 669 | 0x07f10799, |
| 670 | 0x03f01700, | 670 | 0x03f01700, |
| 671 | 0x0009d002, | 671 | 0x0009d002, |
| @@ -710,18 +710,40 @@ uint32_t nvd7_grhub_code[] = { | |||
| 710 | /* 0x072b: ih_no_ctxsw */ | 710 | /* 0x072b: ih_no_ctxsw */ |
| 711 | 0xe40421f4, | 711 | 0xe40421f4, |
| 712 | 0xf40400ab, | 712 | 0xf40400ab, |
| 713 | 0xb7f1140b, | 713 | 0xe7f16c0b, |
| 714 | 0xe3f00708, | ||
| 715 | 0x6821f440, | ||
| 716 | 0xf102ffb9, | ||
| 717 | 0xf0040007, | ||
| 718 | 0x0fd00203, | ||
| 719 | 0xf104bd00, | ||
| 720 | 0xf00704e7, | ||
| 721 | 0x21f440e3, | ||
| 722 | 0x02ffb968, | ||
| 723 | 0x030007f1, | ||
| 724 | 0xd00203f0, | ||
| 725 | 0x04bd000f, | ||
| 726 | 0x9450fec7, | ||
| 727 | 0xf7f102ee, | ||
| 728 | 0xf3f00700, | ||
| 729 | 0x00efbb40, | ||
| 730 | 0xf16821f4, | ||
| 731 | 0xf0020007, | ||
| 732 | 0x0fd00203, | ||
| 733 | 0xf004bd00, | ||
| 734 | 0x21f503f7, | ||
| 735 | 0xb7f1037e, | ||
| 714 | 0xbfb90100, | 736 | 0xbfb90100, |
| 715 | 0x44e7f102, | 737 | 0x44e7f102, |
| 716 | 0x40e3f001, | 738 | 0x40e3f001, |
| 717 | /* 0x0743: ih_no_fwmthd */ | 739 | /* 0x079b: ih_no_fwmthd */ |
| 718 | 0xf19d21f4, | 740 | 0xf19d21f4, |
| 719 | 0xbd0104b7, | 741 | 0xbd0504b7, |
| 720 | 0xb4abffb0, | 742 | 0xb4abffb0, |
| 721 | 0xf10f0bf4, | 743 | 0xf10f0bf4, |
| 722 | 0xf0070007, | 744 | 0xf0070007, |
| 723 | 0x0bd00303, | 745 | 0x0bd00303, |
| 724 | /* 0x075b: ih_no_other */ | 746 | /* 0x07b3: ih_no_other */ |
| 725 | 0xf104bd00, | 747 | 0xf104bd00, |
| 726 | 0xf0010007, | 748 | 0xf0010007, |
| 727 | 0x0ad00003, | 749 | 0x0ad00003, |
| @@ -731,36 +753,36 @@ uint32_t nvd7_grhub_code[] = { | |||
| 731 | 0xfc90fca0, | 753 | 0xfc90fca0, |
| 732 | 0x0088fe80, | 754 | 0x0088fe80, |
| 733 | 0x32f480fc, | 755 | 0x32f480fc, |
| 734 | /* 0x077f: ctx_4160s */ | 756 | /* 0x07d7: ctx_4160s */ |
| 735 | 0xf001f800, | 757 | 0xf001f800, |
| 736 | 0xffb901f7, | 758 | 0xffb901f7, |
| 737 | 0x60e7f102, | 759 | 0x60e7f102, |
| 738 | 0x40e3f041, | 760 | 0x40e3f041, |
| 739 | /* 0x078f: ctx_4160s_wait */ | 761 | /* 0x07e7: ctx_4160s_wait */ |
| 740 | 0xf19d21f4, | 762 | 0xf19d21f4, |
| 741 | 0xf04160e7, | 763 | 0xf04160e7, |
| 742 | 0x21f440e3, | 764 | 0x21f440e3, |
| 743 | 0x02ffb968, | 765 | 0x02ffb968, |
| 744 | 0xf404ffc8, | 766 | 0xf404ffc8, |
| 745 | 0x00f8f00b, | 767 | 0x00f8f00b, |
| 746 | /* 0x07a4: ctx_4160c */ | 768 | /* 0x07fc: ctx_4160c */ |
| 747 | 0xffb9f4bd, | 769 | 0xffb9f4bd, |
| 748 | 0x60e7f102, | 770 | 0x60e7f102, |
| 749 | 0x40e3f041, | 771 | 0x40e3f041, |
| 750 | 0xf89d21f4, | 772 | 0xf89d21f4, |
| 751 | /* 0x07b5: ctx_4170s */ | 773 | /* 0x080d: ctx_4170s */ |
| 752 | 0x10f5f000, | 774 | 0x10f5f000, |
| 753 | 0xf102ffb9, | 775 | 0xf102ffb9, |
| 754 | 0xf04170e7, | 776 | 0xf04170e7, |
| 755 | 0x21f440e3, | 777 | 0x21f440e3, |
| 756 | /* 0x07c7: ctx_4170w */ | 778 | /* 0x081f: ctx_4170w */ |
| 757 | 0xf100f89d, | 779 | 0xf100f89d, |
| 758 | 0xf04170e7, | 780 | 0xf04170e7, |
| 759 | 0x21f440e3, | 781 | 0x21f440e3, |
| 760 | 0x02ffb968, | 782 | 0x02ffb968, |
| 761 | 0xf410f4f0, | 783 | 0xf410f4f0, |
| 762 | 0x00f8f01b, | 784 | 0x00f8f01b, |
| 763 | /* 0x07dc: ctx_redswitch */ | 785 | /* 0x0834: ctx_redswitch */ |
| 764 | 0x0200e7f1, | 786 | 0x0200e7f1, |
| 765 | 0xf040e5f0, | 787 | 0xf040e5f0, |
| 766 | 0xe5f020e5, | 788 | 0xe5f020e5, |
| @@ -768,7 +790,7 @@ uint32_t nvd7_grhub_code[] = { | |||
| 768 | 0x0103f085, | 790 | 0x0103f085, |
| 769 | 0xbd000ed0, | 791 | 0xbd000ed0, |
| 770 | 0x08f7f004, | 792 | 0x08f7f004, |
| 771 | /* 0x07f8: ctx_redswitch_delay */ | 793 | /* 0x0850: ctx_redswitch_delay */ |
| 772 | 0xf401f2b6, | 794 | 0xf401f2b6, |
| 773 | 0xe5f1fd1b, | 795 | 0xe5f1fd1b, |
| 774 | 0xe5f10400, | 796 | 0xe5f10400, |
| @@ -776,7 +798,7 @@ uint32_t nvd7_grhub_code[] = { | |||
| 776 | 0x03f08500, | 798 | 0x03f08500, |
| 777 | 0x000ed001, | 799 | 0x000ed001, |
| 778 | 0x00f804bd, | 800 | 0x00f804bd, |
| 779 | /* 0x0814: ctx_86c */ | 801 | /* 0x086c: ctx_86c */ |
| 780 | 0x1b0007f1, | 802 | 0x1b0007f1, |
| 781 | 0xd00203f0, | 803 | 0xd00203f0, |
| 782 | 0x04bd000f, | 804 | 0x04bd000f, |
| @@ -787,16 +809,16 @@ uint32_t nvd7_grhub_code[] = { | |||
| 787 | 0xa86ce7f1, | 809 | 0xa86ce7f1, |
| 788 | 0xf441e3f0, | 810 | 0xf441e3f0, |
| 789 | 0x00f89d21, | 811 | 0x00f89d21, |
| 790 | /* 0x083c: ctx_mem */ | 812 | /* 0x0894: ctx_mem */ |
| 791 | 0x840007f1, | 813 | 0x840007f1, |
| 792 | 0xd00203f0, | 814 | 0xd00203f0, |
| 793 | 0x04bd000f, | 815 | 0x04bd000f, |
| 794 | /* 0x0848: ctx_mem_wait */ | 816 | /* 0x08a0: ctx_mem_wait */ |
| 795 | 0x8400f7f1, | 817 | 0x8400f7f1, |
| 796 | 0xcf02f3f0, | 818 | 0xcf02f3f0, |
| 797 | 0xfffd00ff, | 819 | 0xfffd00ff, |
| 798 | 0xf31bf405, | 820 | 0xf31bf405, |
| 799 | /* 0x085a: ctx_load */ | 821 | /* 0x08b2: ctx_load */ |
| 800 | 0x94bd00f8, | 822 | 0x94bd00f8, |
| 801 | 0xf10599f0, | 823 | 0xf10599f0, |
| 802 | 0xf00f0007, | 824 | 0xf00f0007, |
| @@ -814,7 +836,7 @@ uint32_t nvd7_grhub_code[] = { | |||
| 814 | 0x02d00203, | 836 | 0x02d00203, |
| 815 | 0xf004bd00, | 837 | 0xf004bd00, |
| 816 | 0x21f507f7, | 838 | 0x21f507f7, |
| 817 | 0x07f1083c, | 839 | 0x07f10894, |
| 818 | 0x03f0c000, | 840 | 0x03f0c000, |
| 819 | 0x0002d002, | 841 | 0x0002d002, |
| 820 | 0x0bfe04bd, | 842 | 0x0bfe04bd, |
| @@ -869,31 +891,31 @@ uint32_t nvd7_grhub_code[] = { | |||
| 869 | 0x03f01700, | 891 | 0x03f01700, |
| 870 | 0x0009d002, | 892 | 0x0009d002, |
| 871 | 0x00f804bd, | 893 | 0x00f804bd, |
| 872 | /* 0x0978: ctx_chan */ | 894 | /* 0x09d0: ctx_chan */ |
| 873 | 0x077f21f5, | 895 | 0x07d721f5, |
| 874 | 0x085a21f5, | 896 | 0x08b221f5, |
| 875 | 0xf40ca7f0, | 897 | 0xf40ca7f0, |
| 876 | 0xf7f0d021, | 898 | 0xf7f0d021, |
| 877 | 0x3c21f505, | 899 | 0x9421f505, |
| 878 | 0xa421f508, | 900 | 0xfc21f508, |
| 879 | /* 0x0993: ctx_mmio_exec */ | 901 | /* 0x09eb: ctx_mmio_exec */ |
| 880 | 0x9800f807, | 902 | 0x9800f807, |
| 881 | 0x07f14103, | 903 | 0x07f14103, |
| 882 | 0x03f08100, | 904 | 0x03f08100, |
| 883 | 0x0003d002, | 905 | 0x0003d002, |
| 884 | 0x34bd04bd, | 906 | 0x34bd04bd, |
| 885 | /* 0x09a4: ctx_mmio_loop */ | 907 | /* 0x09fc: ctx_mmio_loop */ |
| 886 | 0xf4ff34c4, | 908 | 0xf4ff34c4, |
| 887 | 0x57f10f1b, | 909 | 0x57f10f1b, |
| 888 | 0x53f00200, | 910 | 0x53f00200, |
| 889 | 0x0535fa06, | 911 | 0x0535fa06, |
| 890 | /* 0x09b6: ctx_mmio_pull */ | 912 | /* 0x0a0e: ctx_mmio_pull */ |
| 891 | 0x4e9803f8, | 913 | 0x4e9803f8, |
| 892 | 0x814f9880, | 914 | 0x814f9880, |
| 893 | 0xb69d21f4, | 915 | 0xb69d21f4, |
| 894 | 0x12b60830, | 916 | 0x12b60830, |
| 895 | 0xdf1bf401, | 917 | 0xdf1bf401, |
| 896 | /* 0x09c8: ctx_mmio_done */ | 918 | /* 0x0a20: ctx_mmio_done */ |
| 897 | 0xf1160398, | 919 | 0xf1160398, |
| 898 | 0xf0810007, | 920 | 0xf0810007, |
| 899 | 0x03d00203, | 921 | 0x03d00203, |
| @@ -902,30 +924,30 @@ uint32_t nvd7_grhub_code[] = { | |||
| 902 | 0x13f00100, | 924 | 0x13f00100, |
| 903 | 0x0601fa06, | 925 | 0x0601fa06, |
| 904 | 0x00f803f8, | 926 | 0x00f803f8, |
| 905 | /* 0x09e8: ctx_xfer */ | 927 | /* 0x0a40: ctx_xfer */ |
| 906 | 0xf104e7f0, | 928 | 0xf104e7f0, |
| 907 | 0xf0020007, | 929 | 0xf0020007, |
| 908 | 0x0ed00303, | 930 | 0x0ed00303, |
| 909 | /* 0x09f7: ctx_xfer_idle */ | 931 | /* 0x0a4f: ctx_xfer_idle */ |
| 910 | 0xf104bd00, | 932 | 0xf104bd00, |
| 911 | 0xf00000e7, | 933 | 0xf00000e7, |
| 912 | 0xeecf03e3, | 934 | 0xeecf03e3, |
| 913 | 0x00e4f100, | 935 | 0x00e4f100, |
| 914 | 0xf21bf420, | 936 | 0xf21bf420, |
| 915 | 0xf40611f4, | 937 | 0xf40611f4, |
| 916 | /* 0x0a0e: ctx_xfer_pre */ | 938 | /* 0x0a66: ctx_xfer_pre */ |
| 917 | 0xf7f01102, | 939 | 0xf7f01102, |
| 918 | 0x1421f510, | 940 | 0x6c21f510, |
| 919 | 0x7f21f508, | 941 | 0xd721f508, |
| 920 | 0x1c11f407, | 942 | 0x1c11f407, |
| 921 | /* 0x0a1c: ctx_xfer_pre_load */ | 943 | /* 0x0a74: ctx_xfer_pre_load */ |
| 922 | 0xf502f7f0, | 944 | 0xf502f7f0, |
| 923 | 0xf507b521, | 945 | 0xf5080d21, |
| 924 | 0xf507c721, | 946 | 0xf5081f21, |
| 925 | 0xbd07dc21, | 947 | 0xbd083421, |
| 926 | 0xb521f5f4, | 948 | 0x0d21f5f4, |
| 927 | 0x5a21f507, | 949 | 0xb221f508, |
| 928 | /* 0x0a35: ctx_xfer_exec */ | 950 | /* 0x0a8d: ctx_xfer_exec */ |
| 929 | 0x16019808, | 951 | 0x16019808, |
| 930 | 0x07f124bd, | 952 | 0x07f124bd, |
| 931 | 0x03f00500, | 953 | 0x03f00500, |
| @@ -960,23 +982,65 @@ uint32_t nvd7_grhub_code[] = { | |||
| 960 | 0x1301f402, | 982 | 0x1301f402, |
| 961 | 0xf40ca7f0, | 983 | 0xf40ca7f0, |
| 962 | 0xf7f0d021, | 984 | 0xf7f0d021, |
| 963 | 0x3c21f505, | 985 | 0x9421f505, |
| 964 | 0x3202f408, | 986 | 0x3202f408, |
| 965 | /* 0x0ac4: ctx_xfer_post */ | 987 | /* 0x0b1c: ctx_xfer_post */ |
| 966 | 0xf502f7f0, | 988 | 0xf502f7f0, |
| 967 | 0xbd07b521, | 989 | 0xbd080d21, |
| 968 | 0x1421f5f4, | 990 | 0x6c21f5f4, |
| 969 | 0x7f21f508, | 991 | 0x7f21f508, |
| 970 | 0xc721f502, | 992 | 0x1f21f502, |
| 971 | 0xf5f4bd07, | 993 | 0xf5f4bd08, |
| 972 | 0xf407b521, | 994 | 0xf4080d21, |
| 973 | 0x01981011, | 995 | 0x01981011, |
| 974 | 0x0511fd40, | 996 | 0x0511fd40, |
| 975 | 0xf5070bf4, | 997 | 0xf5070bf4, |
| 976 | /* 0x0aef: ctx_xfer_no_post_mmio */ | 998 | /* 0x0b47: ctx_xfer_no_post_mmio */ |
| 977 | 0xf5099321, | 999 | 0xf509eb21, |
| 978 | /* 0x0af3: ctx_xfer_done */ | 1000 | /* 0x0b4b: ctx_xfer_done */ |
| 979 | 0xf807a421, | 1001 | 0xf807fc21, |
| 1002 | 0x00000000, | ||
| 1003 | 0x00000000, | ||
| 1004 | 0x00000000, | ||
| 1005 | 0x00000000, | ||
| 1006 | 0x00000000, | ||
| 1007 | 0x00000000, | ||
| 1008 | 0x00000000, | ||
| 1009 | 0x00000000, | ||
| 1010 | 0x00000000, | ||
| 1011 | 0x00000000, | ||
| 1012 | 0x00000000, | ||
| 1013 | 0x00000000, | ||
| 1014 | 0x00000000, | ||
| 1015 | 0x00000000, | ||
| 1016 | 0x00000000, | ||
| 1017 | 0x00000000, | ||
| 1018 | 0x00000000, | ||
| 1019 | 0x00000000, | ||
| 1020 | 0x00000000, | ||
| 1021 | 0x00000000, | ||
| 1022 | 0x00000000, | ||
| 1023 | 0x00000000, | ||
| 1024 | 0x00000000, | ||
| 1025 | 0x00000000, | ||
| 1026 | 0x00000000, | ||
| 1027 | 0x00000000, | ||
| 1028 | 0x00000000, | ||
| 1029 | 0x00000000, | ||
| 1030 | 0x00000000, | ||
| 1031 | 0x00000000, | ||
| 1032 | 0x00000000, | ||
| 1033 | 0x00000000, | ||
| 1034 | 0x00000000, | ||
| 1035 | 0x00000000, | ||
| 1036 | 0x00000000, | ||
| 1037 | 0x00000000, | ||
| 1038 | 0x00000000, | ||
| 1039 | 0x00000000, | ||
| 1040 | 0x00000000, | ||
| 1041 | 0x00000000, | ||
| 1042 | 0x00000000, | ||
| 1043 | 0x00000000, | ||
| 980 | 0x00000000, | 1044 | 0x00000000, |
| 981 | 0x00000000, | 1045 | 0x00000000, |
| 982 | 0x00000000, | 1046 | 0x00000000, |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnve0.fuc.h b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnve0.fuc.h index 6547b3dfc7ed..51c3797d8537 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnve0.fuc.h +++ b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnve0.fuc.h | |||
| @@ -528,10 +528,10 @@ uint32_t nve0_grhub_code[] = { | |||
| 528 | 0x0001d001, | 528 | 0x0001d001, |
| 529 | 0x17f104bd, | 529 | 0x17f104bd, |
| 530 | 0xf7f00100, | 530 | 0xf7f00100, |
| 531 | 0x7f21f502, | 531 | 0xd721f502, |
| 532 | 0x9121f507, | 532 | 0xe921f507, |
| 533 | 0x10f7f007, | 533 | 0x10f7f007, |
| 534 | 0x07de21f5, | 534 | 0x083621f5, |
| 535 | 0x98000e98, | 535 | 0x98000e98, |
| 536 | 0x21f5010f, | 536 | 0x21f5010f, |
| 537 | 0x14950150, | 537 | 0x14950150, |
| @@ -574,9 +574,9 @@ uint32_t nve0_grhub_code[] = { | |||
| 574 | 0xb6800040, | 574 | 0xb6800040, |
| 575 | 0x1bf40132, | 575 | 0x1bf40132, |
| 576 | 0x00f7f0be, | 576 | 0x00f7f0be, |
| 577 | 0x07de21f5, | 577 | 0x083621f5, |
| 578 | 0xf500f7f0, | 578 | 0xf500f7f0, |
| 579 | 0xf1077f21, | 579 | 0xf107d721, |
| 580 | 0xf0010007, | 580 | 0xf0010007, |
| 581 | 0x01d00203, | 581 | 0x01d00203, |
| 582 | 0xbd04bd00, | 582 | 0xbd04bd00, |
| @@ -610,8 +610,8 @@ uint32_t nve0_grhub_code[] = { | |||
| 610 | 0x09d00203, | 610 | 0x09d00203, |
| 611 | 0xf404bd00, | 611 | 0xf404bd00, |
| 612 | 0x31f40132, | 612 | 0x31f40132, |
| 613 | 0xaa21f502, | 613 | 0x0221f502, |
| 614 | 0xf094bd09, | 614 | 0xf094bd0a, |
| 615 | 0x07f10799, | 615 | 0x07f10799, |
| 616 | 0x03f01700, | 616 | 0x03f01700, |
| 617 | 0x0009d002, | 617 | 0x0009d002, |
| @@ -621,7 +621,7 @@ uint32_t nve0_grhub_code[] = { | |||
| 621 | 0x0203f00f, | 621 | 0x0203f00f, |
| 622 | 0xbd0009d0, | 622 | 0xbd0009d0, |
| 623 | 0x0131f404, | 623 | 0x0131f404, |
| 624 | 0x09aa21f5, | 624 | 0x0a0221f5, |
| 625 | 0x99f094bd, | 625 | 0x99f094bd, |
| 626 | 0x0007f106, | 626 | 0x0007f106, |
| 627 | 0x0203f017, | 627 | 0x0203f017, |
| @@ -631,7 +631,7 @@ uint32_t nve0_grhub_code[] = { | |||
| 631 | 0x12b920f9, | 631 | 0x12b920f9, |
| 632 | 0x0132f402, | 632 | 0x0132f402, |
| 633 | 0xf50232f4, | 633 | 0xf50232f4, |
| 634 | 0xfc09aa21, | 634 | 0xfc0a0221, |
| 635 | 0x0007f120, | 635 | 0x0007f120, |
| 636 | 0x0203f0c0, | 636 | 0x0203f0c0, |
| 637 | 0xbd0002d0, | 637 | 0xbd0002d0, |
| @@ -640,7 +640,7 @@ uint32_t nve0_grhub_code[] = { | |||
| 640 | 0xf41f23c8, | 640 | 0xf41f23c8, |
| 641 | 0x31f40d0b, | 641 | 0x31f40d0b, |
| 642 | 0x0232f401, | 642 | 0x0232f401, |
| 643 | 0x09aa21f5, | 643 | 0x0a0221f5, |
| 644 | /* 0x063c: chsw_done */ | 644 | /* 0x063c: chsw_done */ |
| 645 | 0xf10127f0, | 645 | 0xf10127f0, |
| 646 | 0xf0c30007, | 646 | 0xf0c30007, |
| @@ -654,7 +654,7 @@ uint32_t nve0_grhub_code[] = { | |||
| 654 | /* 0x0660: main_not_ctx_switch */ | 654 | /* 0x0660: main_not_ctx_switch */ |
| 655 | 0xf401e4b0, | 655 | 0xf401e4b0, |
| 656 | 0xf2b90d1b, | 656 | 0xf2b90d1b, |
| 657 | 0x4221f502, | 657 | 0x9a21f502, |
| 658 | 0x460ef409, | 658 | 0x460ef409, |
| 659 | /* 0x0670: main_not_ctx_chan */ | 659 | /* 0x0670: main_not_ctx_chan */ |
| 660 | 0xf402e4b0, | 660 | 0xf402e4b0, |
| @@ -664,8 +664,8 @@ uint32_t nve0_grhub_code[] = { | |||
| 664 | 0x09d00203, | 664 | 0x09d00203, |
| 665 | 0xf404bd00, | 665 | 0xf404bd00, |
| 666 | 0x32f40132, | 666 | 0x32f40132, |
| 667 | 0xaa21f502, | 667 | 0x0221f502, |
| 668 | 0xf094bd09, | 668 | 0xf094bd0a, |
| 669 | 0x07f10799, | 669 | 0x07f10799, |
| 670 | 0x03f01700, | 670 | 0x03f01700, |
| 671 | 0x0009d002, | 671 | 0x0009d002, |
| @@ -710,18 +710,40 @@ uint32_t nve0_grhub_code[] = { | |||
| 710 | /* 0x072b: ih_no_ctxsw */ | 710 | /* 0x072b: ih_no_ctxsw */ |
| 711 | 0xe40421f4, | 711 | 0xe40421f4, |
| 712 | 0xf40400ab, | 712 | 0xf40400ab, |
| 713 | 0xb7f1140b, | 713 | 0xe7f16c0b, |
| 714 | 0xe3f00708, | ||
| 715 | 0x6821f440, | ||
| 716 | 0xf102ffb9, | ||
| 717 | 0xf0040007, | ||
| 718 | 0x0fd00203, | ||
| 719 | 0xf104bd00, | ||
| 720 | 0xf00704e7, | ||
| 721 | 0x21f440e3, | ||
| 722 | 0x02ffb968, | ||
| 723 | 0x030007f1, | ||
| 724 | 0xd00203f0, | ||
| 725 | 0x04bd000f, | ||
| 726 | 0x9450fec7, | ||
| 727 | 0xf7f102ee, | ||
| 728 | 0xf3f00700, | ||
| 729 | 0x00efbb40, | ||
| 730 | 0xf16821f4, | ||
| 731 | 0xf0020007, | ||
| 732 | 0x0fd00203, | ||
| 733 | 0xf004bd00, | ||
| 734 | 0x21f503f7, | ||
| 735 | 0xb7f1037e, | ||
| 714 | 0xbfb90100, | 736 | 0xbfb90100, |
| 715 | 0x44e7f102, | 737 | 0x44e7f102, |
| 716 | 0x40e3f001, | 738 | 0x40e3f001, |
| 717 | /* 0x0743: ih_no_fwmthd */ | 739 | /* 0x079b: ih_no_fwmthd */ |
| 718 | 0xf19d21f4, | 740 | 0xf19d21f4, |
| 719 | 0xbd0104b7, | 741 | 0xbd0504b7, |
| 720 | 0xb4abffb0, | 742 | 0xb4abffb0, |
| 721 | 0xf10f0bf4, | 743 | 0xf10f0bf4, |
| 722 | 0xf0070007, | 744 | 0xf0070007, |
| 723 | 0x0bd00303, | 745 | 0x0bd00303, |
| 724 | /* 0x075b: ih_no_other */ | 746 | /* 0x07b3: ih_no_other */ |
| 725 | 0xf104bd00, | 747 | 0xf104bd00, |
| 726 | 0xf0010007, | 748 | 0xf0010007, |
| 727 | 0x0ad00003, | 749 | 0x0ad00003, |
| @@ -731,19 +753,19 @@ uint32_t nve0_grhub_code[] = { | |||
| 731 | 0xfc90fca0, | 753 | 0xfc90fca0, |
| 732 | 0x0088fe80, | 754 | 0x0088fe80, |
| 733 | 0x32f480fc, | 755 | 0x32f480fc, |
| 734 | /* 0x077f: ctx_4170s */ | 756 | /* 0x07d7: ctx_4170s */ |
| 735 | 0xf001f800, | 757 | 0xf001f800, |
| 736 | 0xffb910f5, | 758 | 0xffb910f5, |
| 737 | 0x70e7f102, | 759 | 0x70e7f102, |
| 738 | 0x40e3f041, | 760 | 0x40e3f041, |
| 739 | 0xf89d21f4, | 761 | 0xf89d21f4, |
| 740 | /* 0x0791: ctx_4170w */ | 762 | /* 0x07e9: ctx_4170w */ |
| 741 | 0x70e7f100, | 763 | 0x70e7f100, |
| 742 | 0x40e3f041, | 764 | 0x40e3f041, |
| 743 | 0xb96821f4, | 765 | 0xb96821f4, |
| 744 | 0xf4f002ff, | 766 | 0xf4f002ff, |
| 745 | 0xf01bf410, | 767 | 0xf01bf410, |
| 746 | /* 0x07a6: ctx_redswitch */ | 768 | /* 0x07fe: ctx_redswitch */ |
| 747 | 0xe7f100f8, | 769 | 0xe7f100f8, |
| 748 | 0xe5f00200, | 770 | 0xe5f00200, |
| 749 | 0x20e5f040, | 771 | 0x20e5f040, |
| @@ -751,7 +773,7 @@ uint32_t nve0_grhub_code[] = { | |||
| 751 | 0xf0850007, | 773 | 0xf0850007, |
| 752 | 0x0ed00103, | 774 | 0x0ed00103, |
| 753 | 0xf004bd00, | 775 | 0xf004bd00, |
| 754 | /* 0x07c2: ctx_redswitch_delay */ | 776 | /* 0x081a: ctx_redswitch_delay */ |
| 755 | 0xf2b608f7, | 777 | 0xf2b608f7, |
| 756 | 0xfd1bf401, | 778 | 0xfd1bf401, |
| 757 | 0x0400e5f1, | 779 | 0x0400e5f1, |
| @@ -759,7 +781,7 @@ uint32_t nve0_grhub_code[] = { | |||
| 759 | 0x850007f1, | 781 | 0x850007f1, |
| 760 | 0xd00103f0, | 782 | 0xd00103f0, |
| 761 | 0x04bd000e, | 783 | 0x04bd000e, |
| 762 | /* 0x07de: ctx_86c */ | 784 | /* 0x0836: ctx_86c */ |
| 763 | 0x07f100f8, | 785 | 0x07f100f8, |
| 764 | 0x03f01b00, | 786 | 0x03f01b00, |
| 765 | 0x000fd002, | 787 | 0x000fd002, |
| @@ -770,17 +792,17 @@ uint32_t nve0_grhub_code[] = { | |||
| 770 | 0xe7f102ff, | 792 | 0xe7f102ff, |
| 771 | 0xe3f0a86c, | 793 | 0xe3f0a86c, |
| 772 | 0x9d21f441, | 794 | 0x9d21f441, |
| 773 | /* 0x0806: ctx_mem */ | 795 | /* 0x085e: ctx_mem */ |
| 774 | 0x07f100f8, | 796 | 0x07f100f8, |
| 775 | 0x03f08400, | 797 | 0x03f08400, |
| 776 | 0x000fd002, | 798 | 0x000fd002, |
| 777 | /* 0x0812: ctx_mem_wait */ | 799 | /* 0x086a: ctx_mem_wait */ |
| 778 | 0xf7f104bd, | 800 | 0xf7f104bd, |
| 779 | 0xf3f08400, | 801 | 0xf3f08400, |
| 780 | 0x00ffcf02, | 802 | 0x00ffcf02, |
| 781 | 0xf405fffd, | 803 | 0xf405fffd, |
| 782 | 0x00f8f31b, | 804 | 0x00f8f31b, |
| 783 | /* 0x0824: ctx_load */ | 805 | /* 0x087c: ctx_load */ |
| 784 | 0x99f094bd, | 806 | 0x99f094bd, |
| 785 | 0x0007f105, | 807 | 0x0007f105, |
| 786 | 0x0203f00f, | 808 | 0x0203f00f, |
| @@ -797,7 +819,7 @@ uint32_t nve0_grhub_code[] = { | |||
| 797 | 0x0203f083, | 819 | 0x0203f083, |
| 798 | 0xbd0002d0, | 820 | 0xbd0002d0, |
| 799 | 0x07f7f004, | 821 | 0x07f7f004, |
| 800 | 0x080621f5, | 822 | 0x085e21f5, |
| 801 | 0xc00007f1, | 823 | 0xc00007f1, |
| 802 | 0xd00203f0, | 824 | 0xd00203f0, |
| 803 | 0x04bd0002, | 825 | 0x04bd0002, |
| @@ -852,29 +874,29 @@ uint32_t nve0_grhub_code[] = { | |||
| 852 | 0x170007f1, | 874 | 0x170007f1, |
| 853 | 0xd00203f0, | 875 | 0xd00203f0, |
| 854 | 0x04bd0009, | 876 | 0x04bd0009, |
| 855 | /* 0x0942: ctx_chan */ | 877 | /* 0x099a: ctx_chan */ |
| 856 | 0x21f500f8, | 878 | 0x21f500f8, |
| 857 | 0xa7f00824, | 879 | 0xa7f0087c, |
| 858 | 0xd021f40c, | 880 | 0xd021f40c, |
| 859 | 0xf505f7f0, | 881 | 0xf505f7f0, |
| 860 | 0xf8080621, | 882 | 0xf8085e21, |
| 861 | /* 0x0955: ctx_mmio_exec */ | 883 | /* 0x09ad: ctx_mmio_exec */ |
| 862 | 0x41039800, | 884 | 0x41039800, |
| 863 | 0x810007f1, | 885 | 0x810007f1, |
| 864 | 0xd00203f0, | 886 | 0xd00203f0, |
| 865 | 0x04bd0003, | 887 | 0x04bd0003, |
| 866 | /* 0x0966: ctx_mmio_loop */ | 888 | /* 0x09be: ctx_mmio_loop */ |
| 867 | 0x34c434bd, | 889 | 0x34c434bd, |
| 868 | 0x0f1bf4ff, | 890 | 0x0f1bf4ff, |
| 869 | 0x020057f1, | 891 | 0x020057f1, |
| 870 | 0xfa0653f0, | 892 | 0xfa0653f0, |
| 871 | 0x03f80535, | 893 | 0x03f80535, |
| 872 | /* 0x0978: ctx_mmio_pull */ | 894 | /* 0x09d0: ctx_mmio_pull */ |
| 873 | 0x98804e98, | 895 | 0x98804e98, |
| 874 | 0x21f4814f, | 896 | 0x21f4814f, |
| 875 | 0x0830b69d, | 897 | 0x0830b69d, |
| 876 | 0xf40112b6, | 898 | 0xf40112b6, |
| 877 | /* 0x098a: ctx_mmio_done */ | 899 | /* 0x09e2: ctx_mmio_done */ |
| 878 | 0x0398df1b, | 900 | 0x0398df1b, |
| 879 | 0x0007f116, | 901 | 0x0007f116, |
| 880 | 0x0203f081, | 902 | 0x0203f081, |
| @@ -883,30 +905,30 @@ uint32_t nve0_grhub_code[] = { | |||
| 883 | 0x010017f1, | 905 | 0x010017f1, |
| 884 | 0xfa0613f0, | 906 | 0xfa0613f0, |
| 885 | 0x03f80601, | 907 | 0x03f80601, |
| 886 | /* 0x09aa: ctx_xfer */ | 908 | /* 0x0a02: ctx_xfer */ |
| 887 | 0xe7f000f8, | 909 | 0xe7f000f8, |
| 888 | 0x0007f104, | 910 | 0x0007f104, |
| 889 | 0x0303f002, | 911 | 0x0303f002, |
| 890 | 0xbd000ed0, | 912 | 0xbd000ed0, |
| 891 | /* 0x09b9: ctx_xfer_idle */ | 913 | /* 0x0a11: ctx_xfer_idle */ |
| 892 | 0x00e7f104, | 914 | 0x00e7f104, |
| 893 | 0x03e3f000, | 915 | 0x03e3f000, |
| 894 | 0xf100eecf, | 916 | 0xf100eecf, |
| 895 | 0xf42000e4, | 917 | 0xf42000e4, |
| 896 | 0x11f4f21b, | 918 | 0x11f4f21b, |
| 897 | 0x0d02f406, | 919 | 0x0d02f406, |
| 898 | /* 0x09d0: ctx_xfer_pre */ | 920 | /* 0x0a28: ctx_xfer_pre */ |
| 899 | 0xf510f7f0, | 921 | 0xf510f7f0, |
| 900 | 0xf407de21, | 922 | 0xf4083621, |
| 901 | /* 0x09da: ctx_xfer_pre_load */ | 923 | /* 0x0a32: ctx_xfer_pre_load */ |
| 902 | 0xf7f01c11, | 924 | 0xf7f01c11, |
| 903 | 0x7f21f502, | 925 | 0xd721f502, |
| 904 | 0x9121f507, | 926 | 0xe921f507, |
| 905 | 0xa621f507, | 927 | 0xfe21f507, |
| 906 | 0xf5f4bd07, | 928 | 0xf5f4bd07, |
| 907 | 0xf5077f21, | 929 | 0xf507d721, |
| 908 | /* 0x09f3: ctx_xfer_exec */ | 930 | /* 0x0a4b: ctx_xfer_exec */ |
| 909 | 0x98082421, | 931 | 0x98087c21, |
| 910 | 0x24bd1601, | 932 | 0x24bd1601, |
| 911 | 0x050007f1, | 933 | 0x050007f1, |
| 912 | 0xd00103f0, | 934 | 0xd00103f0, |
| @@ -941,21 +963,21 @@ uint32_t nve0_grhub_code[] = { | |||
| 941 | 0xa7f01301, | 963 | 0xa7f01301, |
| 942 | 0xd021f40c, | 964 | 0xd021f40c, |
| 943 | 0xf505f7f0, | 965 | 0xf505f7f0, |
| 944 | 0xf4080621, | 966 | 0xf4085e21, |
| 945 | /* 0x0a82: ctx_xfer_post */ | 967 | /* 0x0ada: ctx_xfer_post */ |
| 946 | 0xf7f02e02, | 968 | 0xf7f02e02, |
| 947 | 0x7f21f502, | 969 | 0xd721f502, |
| 948 | 0xf5f4bd07, | 970 | 0xf5f4bd07, |
| 949 | 0xf507de21, | 971 | 0xf5083621, |
| 950 | 0xf5027f21, | 972 | 0xf5027f21, |
| 951 | 0xbd079121, | 973 | 0xbd07e921, |
| 952 | 0x7f21f5f4, | 974 | 0xd721f5f4, |
| 953 | 0x1011f407, | 975 | 0x1011f407, |
| 954 | 0xfd400198, | 976 | 0xfd400198, |
| 955 | 0x0bf40511, | 977 | 0x0bf40511, |
| 956 | 0x5521f507, | 978 | 0xad21f507, |
| 957 | /* 0x0aad: ctx_xfer_no_post_mmio */ | 979 | /* 0x0b05: ctx_xfer_no_post_mmio */ |
| 958 | /* 0x0aad: ctx_xfer_done */ | 980 | /* 0x0b05: ctx_xfer_done */ |
| 959 | 0x0000f809, | 981 | 0x0000f809, |
| 960 | 0x00000000, | 982 | 0x00000000, |
| 961 | 0x00000000, | 983 | 0x00000000, |
| @@ -977,4 +999,46 @@ uint32_t nve0_grhub_code[] = { | |||
| 977 | 0x00000000, | 999 | 0x00000000, |
| 978 | 0x00000000, | 1000 | 0x00000000, |
| 979 | 0x00000000, | 1001 | 0x00000000, |
| 1002 | 0x00000000, | ||
| 1003 | 0x00000000, | ||
| 1004 | 0x00000000, | ||
| 1005 | 0x00000000, | ||
| 1006 | 0x00000000, | ||
| 1007 | 0x00000000, | ||
| 1008 | 0x00000000, | ||
| 1009 | 0x00000000, | ||
| 1010 | 0x00000000, | ||
| 1011 | 0x00000000, | ||
| 1012 | 0x00000000, | ||
| 1013 | 0x00000000, | ||
| 1014 | 0x00000000, | ||
| 1015 | 0x00000000, | ||
| 1016 | 0x00000000, | ||
| 1017 | 0x00000000, | ||
| 1018 | 0x00000000, | ||
| 1019 | 0x00000000, | ||
| 1020 | 0x00000000, | ||
| 1021 | 0x00000000, | ||
| 1022 | 0x00000000, | ||
| 1023 | 0x00000000, | ||
| 1024 | 0x00000000, | ||
| 1025 | 0x00000000, | ||
| 1026 | 0x00000000, | ||
| 1027 | 0x00000000, | ||
| 1028 | 0x00000000, | ||
| 1029 | 0x00000000, | ||
| 1030 | 0x00000000, | ||
| 1031 | 0x00000000, | ||
| 1032 | 0x00000000, | ||
| 1033 | 0x00000000, | ||
| 1034 | 0x00000000, | ||
| 1035 | 0x00000000, | ||
| 1036 | 0x00000000, | ||
| 1037 | 0x00000000, | ||
| 1038 | 0x00000000, | ||
| 1039 | 0x00000000, | ||
| 1040 | 0x00000000, | ||
| 1041 | 0x00000000, | ||
| 1042 | 0x00000000, | ||
| 1043 | 0x00000000, | ||
| 980 | }; | 1044 | }; |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvf0.fuc.h b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvf0.fuc.h index a5aee5a4302f..a0af4b703a8e 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvf0.fuc.h +++ b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/hubnvf0.fuc.h | |||
| @@ -528,10 +528,10 @@ uint32_t nvf0_grhub_code[] = { | |||
| 528 | 0x0001d001, | 528 | 0x0001d001, |
| 529 | 0x17f104bd, | 529 | 0x17f104bd, |
| 530 | 0xf7f00100, | 530 | 0xf7f00100, |
| 531 | 0x7f21f502, | 531 | 0xd721f502, |
| 532 | 0x9121f507, | 532 | 0xe921f507, |
| 533 | 0x10f7f007, | 533 | 0x10f7f007, |
| 534 | 0x07de21f5, | 534 | 0x083621f5, |
| 535 | 0x98000e98, | 535 | 0x98000e98, |
| 536 | 0x21f5010f, | 536 | 0x21f5010f, |
| 537 | 0x14950150, | 537 | 0x14950150, |
| @@ -574,9 +574,9 @@ uint32_t nvf0_grhub_code[] = { | |||
| 574 | 0xb6800040, | 574 | 0xb6800040, |
| 575 | 0x1bf40132, | 575 | 0x1bf40132, |
| 576 | 0x00f7f0be, | 576 | 0x00f7f0be, |
| 577 | 0x07de21f5, | 577 | 0x083621f5, |
| 578 | 0xf500f7f0, | 578 | 0xf500f7f0, |
| 579 | 0xf1077f21, | 579 | 0xf107d721, |
| 580 | 0xf0010007, | 580 | 0xf0010007, |
| 581 | 0x01d00203, | 581 | 0x01d00203, |
| 582 | 0xbd04bd00, | 582 | 0xbd04bd00, |
| @@ -610,8 +610,8 @@ uint32_t nvf0_grhub_code[] = { | |||
| 610 | 0x09d00203, | 610 | 0x09d00203, |
| 611 | 0xf404bd00, | 611 | 0xf404bd00, |
| 612 | 0x31f40132, | 612 | 0x31f40132, |
| 613 | 0xaa21f502, | 613 | 0x0221f502, |
| 614 | 0xf094bd09, | 614 | 0xf094bd0a, |
| 615 | 0x07f10799, | 615 | 0x07f10799, |
| 616 | 0x03f01700, | 616 | 0x03f01700, |
| 617 | 0x0009d002, | 617 | 0x0009d002, |
| @@ -621,7 +621,7 @@ uint32_t nvf0_grhub_code[] = { | |||
| 621 | 0x0203f037, | 621 | 0x0203f037, |
| 622 | 0xbd0009d0, | 622 | 0xbd0009d0, |
| 623 | 0x0131f404, | 623 | 0x0131f404, |
| 624 | 0x09aa21f5, | 624 | 0x0a0221f5, |
| 625 | 0x99f094bd, | 625 | 0x99f094bd, |
| 626 | 0x0007f106, | 626 | 0x0007f106, |
| 627 | 0x0203f017, | 627 | 0x0203f017, |
| @@ -631,7 +631,7 @@ uint32_t nvf0_grhub_code[] = { | |||
| 631 | 0x12b920f9, | 631 | 0x12b920f9, |
| 632 | 0x0132f402, | 632 | 0x0132f402, |
| 633 | 0xf50232f4, | 633 | 0xf50232f4, |
| 634 | 0xfc09aa21, | 634 | 0xfc0a0221, |
| 635 | 0x0007f120, | 635 | 0x0007f120, |
| 636 | 0x0203f0c0, | 636 | 0x0203f0c0, |
| 637 | 0xbd0002d0, | 637 | 0xbd0002d0, |
| @@ -640,7 +640,7 @@ uint32_t nvf0_grhub_code[] = { | |||
| 640 | 0xf41f23c8, | 640 | 0xf41f23c8, |
| 641 | 0x31f40d0b, | 641 | 0x31f40d0b, |
| 642 | 0x0232f401, | 642 | 0x0232f401, |
| 643 | 0x09aa21f5, | 643 | 0x0a0221f5, |
| 644 | /* 0x063c: chsw_done */ | 644 | /* 0x063c: chsw_done */ |
| 645 | 0xf10127f0, | 645 | 0xf10127f0, |
| 646 | 0xf0c30007, | 646 | 0xf0c30007, |
| @@ -654,7 +654,7 @@ uint32_t nvf0_grhub_code[] = { | |||
| 654 | /* 0x0660: main_not_ctx_switch */ | 654 | /* 0x0660: main_not_ctx_switch */ |
| 655 | 0xf401e4b0, | 655 | 0xf401e4b0, |
| 656 | 0xf2b90d1b, | 656 | 0xf2b90d1b, |
| 657 | 0x4221f502, | 657 | 0x9a21f502, |
| 658 | 0x460ef409, | 658 | 0x460ef409, |
| 659 | /* 0x0670: main_not_ctx_chan */ | 659 | /* 0x0670: main_not_ctx_chan */ |
| 660 | 0xf402e4b0, | 660 | 0xf402e4b0, |
| @@ -664,8 +664,8 @@ uint32_t nvf0_grhub_code[] = { | |||
| 664 | 0x09d00203, | 664 | 0x09d00203, |
| 665 | 0xf404bd00, | 665 | 0xf404bd00, |
| 666 | 0x32f40132, | 666 | 0x32f40132, |
| 667 | 0xaa21f502, | 667 | 0x0221f502, |
| 668 | 0xf094bd09, | 668 | 0xf094bd0a, |
| 669 | 0x07f10799, | 669 | 0x07f10799, |
| 670 | 0x03f01700, | 670 | 0x03f01700, |
| 671 | 0x0009d002, | 671 | 0x0009d002, |
| @@ -710,18 +710,40 @@ uint32_t nvf0_grhub_code[] = { | |||
| 710 | /* 0x072b: ih_no_ctxsw */ | 710 | /* 0x072b: ih_no_ctxsw */ |
| 711 | 0xe40421f4, | 711 | 0xe40421f4, |
| 712 | 0xf40400ab, | 712 | 0xf40400ab, |
| 713 | 0xb7f1140b, | 713 | 0xe7f16c0b, |
| 714 | 0xe3f00708, | ||
| 715 | 0x6821f440, | ||
| 716 | 0xf102ffb9, | ||
| 717 | 0xf0040007, | ||
| 718 | 0x0fd00203, | ||
| 719 | 0xf104bd00, | ||
| 720 | 0xf00704e7, | ||
| 721 | 0x21f440e3, | ||
| 722 | 0x02ffb968, | ||
| 723 | 0x030007f1, | ||
| 724 | 0xd00203f0, | ||
| 725 | 0x04bd000f, | ||
| 726 | 0x9450fec7, | ||
| 727 | 0xf7f102ee, | ||
| 728 | 0xf3f00700, | ||
| 729 | 0x00efbb40, | ||
| 730 | 0xf16821f4, | ||
| 731 | 0xf0020007, | ||
| 732 | 0x0fd00203, | ||
| 733 | 0xf004bd00, | ||
| 734 | 0x21f503f7, | ||
| 735 | 0xb7f1037e, | ||
| 714 | 0xbfb90100, | 736 | 0xbfb90100, |
| 715 | 0x44e7f102, | 737 | 0x44e7f102, |
| 716 | 0x40e3f001, | 738 | 0x40e3f001, |
| 717 | /* 0x0743: ih_no_fwmthd */ | 739 | /* 0x079b: ih_no_fwmthd */ |
| 718 | 0xf19d21f4, | 740 | 0xf19d21f4, |
| 719 | 0xbd0104b7, | 741 | 0xbd0504b7, |
| 720 | 0xb4abffb0, | 742 | 0xb4abffb0, |
| 721 | 0xf10f0bf4, | 743 | 0xf10f0bf4, |
| 722 | 0xf0070007, | 744 | 0xf0070007, |
| 723 | 0x0bd00303, | 745 | 0x0bd00303, |
| 724 | /* 0x075b: ih_no_other */ | 746 | /* 0x07b3: ih_no_other */ |
| 725 | 0xf104bd00, | 747 | 0xf104bd00, |
| 726 | 0xf0010007, | 748 | 0xf0010007, |
| 727 | 0x0ad00003, | 749 | 0x0ad00003, |
| @@ -731,19 +753,19 @@ uint32_t nvf0_grhub_code[] = { | |||
| 731 | 0xfc90fca0, | 753 | 0xfc90fca0, |
| 732 | 0x0088fe80, | 754 | 0x0088fe80, |
| 733 | 0x32f480fc, | 755 | 0x32f480fc, |
| 734 | /* 0x077f: ctx_4170s */ | 756 | /* 0x07d7: ctx_4170s */ |
| 735 | 0xf001f800, | 757 | 0xf001f800, |
| 736 | 0xffb910f5, | 758 | 0xffb910f5, |
| 737 | 0x70e7f102, | 759 | 0x70e7f102, |
| 738 | 0x40e3f041, | 760 | 0x40e3f041, |
| 739 | 0xf89d21f4, | 761 | 0xf89d21f4, |
| 740 | /* 0x0791: ctx_4170w */ | 762 | /* 0x07e9: ctx_4170w */ |
| 741 | 0x70e7f100, | 763 | 0x70e7f100, |
| 742 | 0x40e3f041, | 764 | 0x40e3f041, |
| 743 | 0xb96821f4, | 765 | 0xb96821f4, |
| 744 | 0xf4f002ff, | 766 | 0xf4f002ff, |
| 745 | 0xf01bf410, | 767 | 0xf01bf410, |
| 746 | /* 0x07a6: ctx_redswitch */ | 768 | /* 0x07fe: ctx_redswitch */ |
| 747 | 0xe7f100f8, | 769 | 0xe7f100f8, |
| 748 | 0xe5f00200, | 770 | 0xe5f00200, |
| 749 | 0x20e5f040, | 771 | 0x20e5f040, |
| @@ -751,7 +773,7 @@ uint32_t nvf0_grhub_code[] = { | |||
| 751 | 0xf0850007, | 773 | 0xf0850007, |
| 752 | 0x0ed00103, | 774 | 0x0ed00103, |
| 753 | 0xf004bd00, | 775 | 0xf004bd00, |
| 754 | /* 0x07c2: ctx_redswitch_delay */ | 776 | /* 0x081a: ctx_redswitch_delay */ |
| 755 | 0xf2b608f7, | 777 | 0xf2b608f7, |
| 756 | 0xfd1bf401, | 778 | 0xfd1bf401, |
| 757 | 0x0400e5f1, | 779 | 0x0400e5f1, |
| @@ -759,7 +781,7 @@ uint32_t nvf0_grhub_code[] = { | |||
| 759 | 0x850007f1, | 781 | 0x850007f1, |
| 760 | 0xd00103f0, | 782 | 0xd00103f0, |
| 761 | 0x04bd000e, | 783 | 0x04bd000e, |
| 762 | /* 0x07de: ctx_86c */ | 784 | /* 0x0836: ctx_86c */ |
| 763 | 0x07f100f8, | 785 | 0x07f100f8, |
| 764 | 0x03f02300, | 786 | 0x03f02300, |
| 765 | 0x000fd002, | 787 | 0x000fd002, |
| @@ -770,17 +792,17 @@ uint32_t nvf0_grhub_code[] = { | |||
| 770 | 0xe7f102ff, | 792 | 0xe7f102ff, |
| 771 | 0xe3f0a88c, | 793 | 0xe3f0a88c, |
| 772 | 0x9d21f441, | 794 | 0x9d21f441, |
| 773 | /* 0x0806: ctx_mem */ | 795 | /* 0x085e: ctx_mem */ |
| 774 | 0x07f100f8, | 796 | 0x07f100f8, |
| 775 | 0x03f08400, | 797 | 0x03f08400, |
| 776 | 0x000fd002, | 798 | 0x000fd002, |
| 777 | /* 0x0812: ctx_mem_wait */ | 799 | /* 0x086a: ctx_mem_wait */ |
| 778 | 0xf7f104bd, | 800 | 0xf7f104bd, |
| 779 | 0xf3f08400, | 801 | 0xf3f08400, |
| 780 | 0x00ffcf02, | 802 | 0x00ffcf02, |
| 781 | 0xf405fffd, | 803 | 0xf405fffd, |
| 782 | 0x00f8f31b, | 804 | 0x00f8f31b, |
| 783 | /* 0x0824: ctx_load */ | 805 | /* 0x087c: ctx_load */ |
| 784 | 0x99f094bd, | 806 | 0x99f094bd, |
| 785 | 0x0007f105, | 807 | 0x0007f105, |
| 786 | 0x0203f037, | 808 | 0x0203f037, |
| @@ -797,7 +819,7 @@ uint32_t nvf0_grhub_code[] = { | |||
| 797 | 0x0203f083, | 819 | 0x0203f083, |
| 798 | 0xbd0002d0, | 820 | 0xbd0002d0, |
| 799 | 0x07f7f004, | 821 | 0x07f7f004, |
| 800 | 0x080621f5, | 822 | 0x085e21f5, |
| 801 | 0xc00007f1, | 823 | 0xc00007f1, |
| 802 | 0xd00203f0, | 824 | 0xd00203f0, |
| 803 | 0x04bd0002, | 825 | 0x04bd0002, |
| @@ -852,29 +874,29 @@ uint32_t nvf0_grhub_code[] = { | |||
| 852 | 0x170007f1, | 874 | 0x170007f1, |
| 853 | 0xd00203f0, | 875 | 0xd00203f0, |
| 854 | 0x04bd0009, | 876 | 0x04bd0009, |
| 855 | /* 0x0942: ctx_chan */ | 877 | /* 0x099a: ctx_chan */ |
| 856 | 0x21f500f8, | 878 | 0x21f500f8, |
| 857 | 0xa7f00824, | 879 | 0xa7f0087c, |
| 858 | 0xd021f40c, | 880 | 0xd021f40c, |
| 859 | 0xf505f7f0, | 881 | 0xf505f7f0, |
| 860 | 0xf8080621, | 882 | 0xf8085e21, |
| 861 | /* 0x0955: ctx_mmio_exec */ | 883 | /* 0x09ad: ctx_mmio_exec */ |
| 862 | 0x41039800, | 884 | 0x41039800, |
| 863 | 0x810007f1, | 885 | 0x810007f1, |
| 864 | 0xd00203f0, | 886 | 0xd00203f0, |
| 865 | 0x04bd0003, | 887 | 0x04bd0003, |
| 866 | /* 0x0966: ctx_mmio_loop */ | 888 | /* 0x09be: ctx_mmio_loop */ |
| 867 | 0x34c434bd, | 889 | 0x34c434bd, |
| 868 | 0x0f1bf4ff, | 890 | 0x0f1bf4ff, |
| 869 | 0x020057f1, | 891 | 0x020057f1, |
| 870 | 0xfa0653f0, | 892 | 0xfa0653f0, |
| 871 | 0x03f80535, | 893 | 0x03f80535, |
| 872 | /* 0x0978: ctx_mmio_pull */ | 894 | /* 0x09d0: ctx_mmio_pull */ |
| 873 | 0x98804e98, | 895 | 0x98804e98, |
| 874 | 0x21f4814f, | 896 | 0x21f4814f, |
| 875 | 0x0830b69d, | 897 | 0x0830b69d, |
| 876 | 0xf40112b6, | 898 | 0xf40112b6, |
| 877 | /* 0x098a: ctx_mmio_done */ | 899 | /* 0x09e2: ctx_mmio_done */ |
| 878 | 0x0398df1b, | 900 | 0x0398df1b, |
| 879 | 0x0007f116, | 901 | 0x0007f116, |
| 880 | 0x0203f081, | 902 | 0x0203f081, |
| @@ -883,30 +905,30 @@ uint32_t nvf0_grhub_code[] = { | |||
| 883 | 0x010017f1, | 905 | 0x010017f1, |
| 884 | 0xfa0613f0, | 906 | 0xfa0613f0, |
| 885 | 0x03f80601, | 907 | 0x03f80601, |
| 886 | /* 0x09aa: ctx_xfer */ | 908 | /* 0x0a02: ctx_xfer */ |
| 887 | 0xe7f000f8, | 909 | 0xe7f000f8, |
| 888 | 0x0007f104, | 910 | 0x0007f104, |
| 889 | 0x0303f002, | 911 | 0x0303f002, |
| 890 | 0xbd000ed0, | 912 | 0xbd000ed0, |
| 891 | /* 0x09b9: ctx_xfer_idle */ | 913 | /* 0x0a11: ctx_xfer_idle */ |
| 892 | 0x00e7f104, | 914 | 0x00e7f104, |
| 893 | 0x03e3f000, | 915 | 0x03e3f000, |
| 894 | 0xf100eecf, | 916 | 0xf100eecf, |
| 895 | 0xf42000e4, | 917 | 0xf42000e4, |
| 896 | 0x11f4f21b, | 918 | 0x11f4f21b, |
| 897 | 0x0d02f406, | 919 | 0x0d02f406, |
| 898 | /* 0x09d0: ctx_xfer_pre */ | 920 | /* 0x0a28: ctx_xfer_pre */ |
| 899 | 0xf510f7f0, | 921 | 0xf510f7f0, |
| 900 | 0xf407de21, | 922 | 0xf4083621, |
| 901 | /* 0x09da: ctx_xfer_pre_load */ | 923 | /* 0x0a32: ctx_xfer_pre_load */ |
| 902 | 0xf7f01c11, | 924 | 0xf7f01c11, |
| 903 | 0x7f21f502, | 925 | 0xd721f502, |
| 904 | 0x9121f507, | 926 | 0xe921f507, |
| 905 | 0xa621f507, | 927 | 0xfe21f507, |
| 906 | 0xf5f4bd07, | 928 | 0xf5f4bd07, |
| 907 | 0xf5077f21, | 929 | 0xf507d721, |
| 908 | /* 0x09f3: ctx_xfer_exec */ | 930 | /* 0x0a4b: ctx_xfer_exec */ |
| 909 | 0x98082421, | 931 | 0x98087c21, |
| 910 | 0x24bd1601, | 932 | 0x24bd1601, |
| 911 | 0x050007f1, | 933 | 0x050007f1, |
| 912 | 0xd00103f0, | 934 | 0xd00103f0, |
| @@ -941,21 +963,21 @@ uint32_t nvf0_grhub_code[] = { | |||
| 941 | 0xa7f01301, | 963 | 0xa7f01301, |
| 942 | 0xd021f40c, | 964 | 0xd021f40c, |
| 943 | 0xf505f7f0, | 965 | 0xf505f7f0, |
| 944 | 0xf4080621, | 966 | 0xf4085e21, |
| 945 | /* 0x0a82: ctx_xfer_post */ | 967 | /* 0x0ada: ctx_xfer_post */ |
| 946 | 0xf7f02e02, | 968 | 0xf7f02e02, |
| 947 | 0x7f21f502, | 969 | 0xd721f502, |
| 948 | 0xf5f4bd07, | 970 | 0xf5f4bd07, |
| 949 | 0xf507de21, | 971 | 0xf5083621, |
| 950 | 0xf5027f21, | 972 | 0xf5027f21, |
| 951 | 0xbd079121, | 973 | 0xbd07e921, |
| 952 | 0x7f21f5f4, | 974 | 0xd721f5f4, |
| 953 | 0x1011f407, | 975 | 0x1011f407, |
| 954 | 0xfd400198, | 976 | 0xfd400198, |
| 955 | 0x0bf40511, | 977 | 0x0bf40511, |
| 956 | 0x5521f507, | 978 | 0xad21f507, |
| 957 | /* 0x0aad: ctx_xfer_no_post_mmio */ | 979 | /* 0x0b05: ctx_xfer_no_post_mmio */ |
| 958 | /* 0x0aad: ctx_xfer_done */ | 980 | /* 0x0b05: ctx_xfer_done */ |
| 959 | 0x0000f809, | 981 | 0x0000f809, |
| 960 | 0x00000000, | 982 | 0x00000000, |
| 961 | 0x00000000, | 983 | 0x00000000, |
| @@ -977,4 +999,46 @@ uint32_t nvf0_grhub_code[] = { | |||
| 977 | 0x00000000, | 999 | 0x00000000, |
| 978 | 0x00000000, | 1000 | 0x00000000, |
| 979 | 0x00000000, | 1001 | 0x00000000, |
| 1002 | 0x00000000, | ||
| 1003 | 0x00000000, | ||
| 1004 | 0x00000000, | ||
| 1005 | 0x00000000, | ||
| 1006 | 0x00000000, | ||
| 1007 | 0x00000000, | ||
| 1008 | 0x00000000, | ||
| 1009 | 0x00000000, | ||
| 1010 | 0x00000000, | ||
| 1011 | 0x00000000, | ||
| 1012 | 0x00000000, | ||
| 1013 | 0x00000000, | ||
| 1014 | 0x00000000, | ||
| 1015 | 0x00000000, | ||
| 1016 | 0x00000000, | ||
| 1017 | 0x00000000, | ||
| 1018 | 0x00000000, | ||
| 1019 | 0x00000000, | ||
| 1020 | 0x00000000, | ||
| 1021 | 0x00000000, | ||
| 1022 | 0x00000000, | ||
| 1023 | 0x00000000, | ||
| 1024 | 0x00000000, | ||
| 1025 | 0x00000000, | ||
| 1026 | 0x00000000, | ||
| 1027 | 0x00000000, | ||
| 1028 | 0x00000000, | ||
| 1029 | 0x00000000, | ||
| 1030 | 0x00000000, | ||
| 1031 | 0x00000000, | ||
| 1032 | 0x00000000, | ||
| 1033 | 0x00000000, | ||
| 1034 | 0x00000000, | ||
| 1035 | 0x00000000, | ||
| 1036 | 0x00000000, | ||
| 1037 | 0x00000000, | ||
| 1038 | 0x00000000, | ||
| 1039 | 0x00000000, | ||
| 1040 | 0x00000000, | ||
| 1041 | 0x00000000, | ||
| 1042 | 0x00000000, | ||
| 1043 | 0x00000000, | ||
| 980 | }; | 1044 | }; |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/macros.fuc b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/macros.fuc index a47d49db5232..2a0b0f844299 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/macros.fuc +++ b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/macros.fuc | |||
| @@ -30,6 +30,12 @@ | |||
| 30 | #define GK110 0xf0 | 30 | #define GK110 0xf0 |
| 31 | #define GK208 0x108 | 31 | #define GK208 0x108 |
| 32 | 32 | ||
| 33 | #define NV_PGRAPH_TRAPPED_ADDR 0x400704 | ||
| 34 | #define NV_PGRAPH_TRAPPED_DATA_LO 0x400708 | ||
| 35 | #define NV_PGRAPH_TRAPPED_DATA_HI 0x40070c | ||
| 36 | |||
| 37 | #define NV_PGRAPH_FE_OBJECT_TABLE(n) ((n) * 4 + 0x400700) | ||
| 38 | |||
| 33 | #define NV_PGRAPH_FECS_INTR_ACK 0x409004 | 39 | #define NV_PGRAPH_FECS_INTR_ACK 0x409004 |
| 34 | #define NV_PGRAPH_FECS_INTR 0x409008 | 40 | #define NV_PGRAPH_FECS_INTR 0x409008 |
| 35 | #define NV_PGRAPH_FECS_INTR_FWMTHD 0x00000400 | 41 | #define NV_PGRAPH_FECS_INTR_FWMTHD 0x00000400 |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/os.h b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/os.h index fd1d380de094..1718ae4e8224 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/fuc/os.h +++ b/drivers/gpu/drm/nouveau/core/engine/graph/fuc/os.h | |||
| @@ -3,5 +3,6 @@ | |||
| 3 | 3 | ||
| 4 | #define E_BAD_COMMAND 0x00000001 | 4 | #define E_BAD_COMMAND 0x00000001 |
| 5 | #define E_CMD_OVERFLOW 0x00000002 | 5 | #define E_CMD_OVERFLOW 0x00000002 |
| 6 | #define E_BAD_FWMTHD 0x00000003 | ||
| 6 | 7 | ||
| 7 | #endif | 8 | #endif |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/nv50.c b/drivers/gpu/drm/nouveau/core/engine/graph/nv50.c index 1a2d56493cf6..20665c21d80e 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/nv50.c +++ b/drivers/gpu/drm/nouveau/core/engine/graph/nv50.c | |||
| @@ -976,7 +976,6 @@ nv50_graph_init(struct nouveau_object *object) | |||
| 976 | break; | 976 | break; |
| 977 | case 0xa0: | 977 | case 0xa0: |
| 978 | default: | 978 | default: |
| 979 | nv_wr32(priv, 0x402cc0, 0x00000000); | ||
| 980 | if (nv_device(priv)->chipset == 0xa0 || | 979 | if (nv_device(priv)->chipset == 0xa0 || |
| 981 | nv_device(priv)->chipset == 0xaa || | 980 | nv_device(priv)->chipset == 0xaa || |
| 982 | nv_device(priv)->chipset == 0xac) { | 981 | nv_device(priv)->chipset == 0xac) { |
| @@ -991,10 +990,10 @@ nv50_graph_init(struct nouveau_object *object) | |||
| 991 | 990 | ||
| 992 | /* zero out zcull regions */ | 991 | /* zero out zcull regions */ |
| 993 | for (i = 0; i < 8; i++) { | 992 | for (i = 0; i < 8; i++) { |
| 994 | nv_wr32(priv, 0x402c20 + (i * 8), 0x00000000); | 993 | nv_wr32(priv, 0x402c20 + (i * 0x10), 0x00000000); |
| 995 | nv_wr32(priv, 0x402c24 + (i * 8), 0x00000000); | 994 | nv_wr32(priv, 0x402c24 + (i * 0x10), 0x00000000); |
| 996 | nv_wr32(priv, 0x402c28 + (i * 8), 0x00000000); | 995 | nv_wr32(priv, 0x402c28 + (i * 0x10), 0x00000000); |
| 997 | nv_wr32(priv, 0x402c2c + (i * 8), 0x00000000); | 996 | nv_wr32(priv, 0x402c2c + (i * 0x10), 0x00000000); |
| 998 | } | 997 | } |
| 999 | return 0; | 998 | return 0; |
| 1000 | } | 999 | } |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c b/drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c index bf7bdb1f291e..aa0838916354 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c +++ b/drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c | |||
| @@ -789,17 +789,40 @@ nvc0_graph_ctxctl_debug(struct nvc0_graph_priv *priv) | |||
| 789 | static void | 789 | static void |
| 790 | nvc0_graph_ctxctl_isr(struct nvc0_graph_priv *priv) | 790 | nvc0_graph_ctxctl_isr(struct nvc0_graph_priv *priv) |
| 791 | { | 791 | { |
| 792 | u32 ustat = nv_rd32(priv, 0x409c18); | 792 | u32 stat = nv_rd32(priv, 0x409c18); |
| 793 | 793 | ||
| 794 | if (ustat & 0x00000001) | 794 | if (stat & 0x00000001) { |
| 795 | nv_error(priv, "CTXCTL ucode error\n"); | 795 | u32 code = nv_rd32(priv, 0x409814); |
| 796 | if (ustat & 0x00080000) | 796 | if (code == E_BAD_FWMTHD) { |
| 797 | nv_error(priv, "CTXCTL watchdog timeout\n"); | 797 | u32 class = nv_rd32(priv, 0x409808); |
| 798 | if (ustat & ~0x00080001) | 798 | u32 addr = nv_rd32(priv, 0x40980c); |
| 799 | nv_error(priv, "CTXCTL 0x%08x\n", ustat); | 799 | u32 subc = (addr & 0x00070000) >> 16; |
| 800 | u32 mthd = (addr & 0x00003ffc); | ||
| 801 | u32 data = nv_rd32(priv, 0x409810); | ||
| 802 | |||
| 803 | nv_error(priv, "FECS MTHD subc %d class 0x%04x " | ||
| 804 | "mthd 0x%04x data 0x%08x\n", | ||
| 805 | subc, class, mthd, data); | ||
| 800 | 806 | ||
| 801 | nvc0_graph_ctxctl_debug(priv); | 807 | nv_wr32(priv, 0x409c20, 0x00000001); |
| 802 | nv_wr32(priv, 0x409c20, ustat); | 808 | stat &= ~0x00000001; |
| 809 | } else { | ||
| 810 | nv_error(priv, "FECS ucode error %d\n", code); | ||
| 811 | } | ||
| 812 | } | ||
| 813 | |||
| 814 | if (stat & 0x00080000) { | ||
| 815 | nv_error(priv, "FECS watchdog timeout\n"); | ||
| 816 | nvc0_graph_ctxctl_debug(priv); | ||
| 817 | nv_wr32(priv, 0x409c20, 0x00080000); | ||
| 818 | stat &= ~0x00080000; | ||
| 819 | } | ||
| 820 | |||
| 821 | if (stat) { | ||
| 822 | nv_error(priv, "FECS 0x%08x\n", stat); | ||
| 823 | nvc0_graph_ctxctl_debug(priv); | ||
| 824 | nv_wr32(priv, 0x409c20, stat); | ||
| 825 | } | ||
| 803 | } | 826 | } |
| 804 | 827 | ||
| 805 | static void | 828 | static void |
diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/nvc0.h b/drivers/gpu/drm/nouveau/core/engine/graph/nvc0.h index 75203a99d902..ffc289198dd8 100644 --- a/drivers/gpu/drm/nouveau/core/engine/graph/nvc0.h +++ b/drivers/gpu/drm/nouveau/core/engine/graph/nvc0.h | |||
| @@ -38,6 +38,8 @@ | |||
| 38 | #include <engine/fifo.h> | 38 | #include <engine/fifo.h> |
| 39 | #include <engine/graph.h> | 39 | #include <engine/graph.h> |
| 40 | 40 | ||
| 41 | #include "fuc/os.h" | ||
| 42 | |||
| 41 | #define GPC_MAX 32 | 43 | #define GPC_MAX 32 |
| 42 | #define TPC_MAX (GPC_MAX * 8) | 44 | #define TPC_MAX (GPC_MAX * 8) |
| 43 | 45 | ||
diff --git a/drivers/gpu/drm/nouveau/core/subdev/clock/nve0.c b/drivers/gpu/drm/nouveau/core/subdev/clock/nve0.c index 4ac1aa30ea11..0e62a3240144 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/clock/nve0.c +++ b/drivers/gpu/drm/nouveau/core/subdev/clock/nve0.c | |||
| @@ -307,7 +307,6 @@ calc_clk(struct nve0_clock_priv *priv, | |||
| 307 | info->dsrc = src0; | 307 | info->dsrc = src0; |
| 308 | if (div0) { | 308 | if (div0) { |
| 309 | info->ddiv |= 0x80000000; | 309 | info->ddiv |= 0x80000000; |
| 310 | info->ddiv |= div0 << 8; | ||
| 311 | info->ddiv |= div0; | 310 | info->ddiv |= div0; |
| 312 | } | 311 | } |
| 313 | if (div1D) { | 312 | if (div1D) { |
| @@ -352,7 +351,7 @@ nve0_clock_prog_0(struct nve0_clock_priv *priv, int clk) | |||
| 352 | { | 351 | { |
| 353 | struct nve0_clock_info *info = &priv->eng[clk]; | 352 | struct nve0_clock_info *info = &priv->eng[clk]; |
| 354 | if (!info->ssel) { | 353 | if (!info->ssel) { |
| 355 | nv_mask(priv, 0x1371d0 + (clk * 0x04), 0x80003f3f, info->ddiv); | 354 | nv_mask(priv, 0x1371d0 + (clk * 0x04), 0x8000003f, info->ddiv); |
| 356 | nv_wr32(priv, 0x137160 + (clk * 0x04), info->dsrc); | 355 | nv_wr32(priv, 0x137160 + (clk * 0x04), info->dsrc); |
| 357 | } | 356 | } |
| 358 | } | 357 | } |
| @@ -389,7 +388,10 @@ static void | |||
| 389 | nve0_clock_prog_3(struct nve0_clock_priv *priv, int clk) | 388 | nve0_clock_prog_3(struct nve0_clock_priv *priv, int clk) |
| 390 | { | 389 | { |
| 391 | struct nve0_clock_info *info = &priv->eng[clk]; | 390 | struct nve0_clock_info *info = &priv->eng[clk]; |
| 392 | nv_mask(priv, 0x137250 + (clk * 0x04), 0x00003f3f, info->mdiv); | 391 | if (info->ssel) |
| 392 | nv_mask(priv, 0x137250 + (clk * 0x04), 0x00003f00, info->mdiv); | ||
| 393 | else | ||
| 394 | nv_mask(priv, 0x137250 + (clk * 0x04), 0x0000003f, info->mdiv); | ||
| 393 | } | 395 | } |
| 394 | 396 | ||
| 395 | static void | 397 | static void |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/fb/ramnve0.c b/drivers/gpu/drm/nouveau/core/subdev/fb/ramnve0.c index 84c7efbc4f38..1ad3ea503133 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/fb/ramnve0.c +++ b/drivers/gpu/drm/nouveau/core/subdev/fb/ramnve0.c | |||
| @@ -262,8 +262,8 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 262 | struct nve0_ram *ram = (void *)pfb->ram; | 262 | struct nve0_ram *ram = (void *)pfb->ram; |
| 263 | struct nve0_ramfuc *fuc = &ram->fuc; | 263 | struct nve0_ramfuc *fuc = &ram->fuc; |
| 264 | struct nouveau_ram_data *next = ram->base.next; | 264 | struct nouveau_ram_data *next = ram->base.next; |
| 265 | int vc = !(next->bios.ramcfg_11_02_08); | 265 | int vc = !next->bios.ramcfg_11_02_08; |
| 266 | int mv = !(next->bios.ramcfg_11_02_04); | 266 | int mv = !next->bios.ramcfg_11_02_04; |
| 267 | u32 mask, data; | 267 | u32 mask, data; |
| 268 | 268 | ||
| 269 | ram_mask(fuc, 0x10f808, 0x40000000, 0x40000000); | 269 | ram_mask(fuc, 0x10f808, 0x40000000, 0x40000000); |
| @@ -370,8 +370,8 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 370 | } | 370 | } |
| 371 | } | 371 | } |
| 372 | 372 | ||
| 373 | if ( (next->bios.ramcfg_11_02_40) || | 373 | if (next->bios.ramcfg_11_02_40 || |
| 374 | (next->bios.ramcfg_11_07_10)) { | 374 | next->bios.ramcfg_11_07_10) { |
| 375 | ram_mask(fuc, 0x132040, 0x00010000, 0x00010000); | 375 | ram_mask(fuc, 0x132040, 0x00010000, 0x00010000); |
| 376 | ram_nsec(fuc, 20000); | 376 | ram_nsec(fuc, 20000); |
| 377 | } | 377 | } |
| @@ -417,7 +417,7 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 417 | ram_mask(fuc, 0x10f694, 0xff00ff00, data); | 417 | ram_mask(fuc, 0x10f694, 0xff00ff00, data); |
| 418 | } | 418 | } |
| 419 | 419 | ||
| 420 | if (ram->mode == 2 && (next->bios.ramcfg_11_08_10)) | 420 | if (ram->mode == 2 && next->bios.ramcfg_11_08_10) |
| 421 | data = 0x00000080; | 421 | data = 0x00000080; |
| 422 | else | 422 | else |
| 423 | data = 0x00000000; | 423 | data = 0x00000000; |
| @@ -425,13 +425,13 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 425 | 425 | ||
| 426 | mask = 0x00070000; | 426 | mask = 0x00070000; |
| 427 | data = 0x00000000; | 427 | data = 0x00000000; |
| 428 | if (!(next->bios.ramcfg_11_02_80)) | 428 | if (!next->bios.ramcfg_11_02_80) |
| 429 | data |= 0x03000000; | 429 | data |= 0x03000000; |
| 430 | if (!(next->bios.ramcfg_11_02_40)) | 430 | if (!next->bios.ramcfg_11_02_40) |
| 431 | data |= 0x00002000; | 431 | data |= 0x00002000; |
| 432 | if (!(next->bios.ramcfg_11_07_10)) | 432 | if (!next->bios.ramcfg_11_07_10) |
| 433 | data |= 0x00004000; | 433 | data |= 0x00004000; |
| 434 | if (!(next->bios.ramcfg_11_07_08)) | 434 | if (!next->bios.ramcfg_11_07_08) |
| 435 | data |= 0x00000003; | 435 | data |= 0x00000003; |
| 436 | else | 436 | else |
| 437 | data |= 0x74000000; | 437 | data |= 0x74000000; |
| @@ -486,7 +486,7 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 486 | 486 | ||
| 487 | data = mask = 0x00000000; | 487 | data = mask = 0x00000000; |
| 488 | if (NOTE00(ramcfg_02_03 != 0)) { | 488 | if (NOTE00(ramcfg_02_03 != 0)) { |
| 489 | data |= (next->bios.ramcfg_11_02_03) << 8; | 489 | data |= next->bios.ramcfg_11_02_03 << 8; |
| 490 | mask |= 0x00000300; | 490 | mask |= 0x00000300; |
| 491 | } | 491 | } |
| 492 | if (NOTE00(ramcfg_01_10)) { | 492 | if (NOTE00(ramcfg_01_10)) { |
| @@ -498,7 +498,7 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 498 | 498 | ||
| 499 | data = mask = 0x00000000; | 499 | data = mask = 0x00000000; |
| 500 | if (NOTE00(timing_30_07 != 0)) { | 500 | if (NOTE00(timing_30_07 != 0)) { |
| 501 | data |= (next->bios.timing_20_30_07) << 28; | 501 | data |= next->bios.timing_20_30_07 << 28; |
| 502 | mask |= 0x70000000; | 502 | mask |= 0x70000000; |
| 503 | } | 503 | } |
| 504 | if (NOTE00(ramcfg_01_01)) { | 504 | if (NOTE00(ramcfg_01_01)) { |
| @@ -510,7 +510,7 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 510 | 510 | ||
| 511 | data = mask = 0x00000000; | 511 | data = mask = 0x00000000; |
| 512 | if (NOTE00(timing_30_07 != 0)) { | 512 | if (NOTE00(timing_30_07 != 0)) { |
| 513 | data |= (next->bios.timing_20_30_07) << 28; | 513 | data |= next->bios.timing_20_30_07 << 28; |
| 514 | mask |= 0x70000000; | 514 | mask |= 0x70000000; |
| 515 | } | 515 | } |
| 516 | if (NOTE00(ramcfg_01_02)) { | 516 | if (NOTE00(ramcfg_01_02)) { |
| @@ -522,16 +522,16 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 522 | 522 | ||
| 523 | mask = 0x33f00000; | 523 | mask = 0x33f00000; |
| 524 | data = 0x00000000; | 524 | data = 0x00000000; |
| 525 | if (!(next->bios.ramcfg_11_01_04)) | 525 | if (!next->bios.ramcfg_11_01_04) |
| 526 | data |= 0x20200000; | 526 | data |= 0x20200000; |
| 527 | if (!(next->bios.ramcfg_11_07_80)) | 527 | if (!next->bios.ramcfg_11_07_80) |
| 528 | data |= 0x12800000; | 528 | data |= 0x12800000; |
| 529 | /*XXX: see note above about there probably being some condition | 529 | /*XXX: see note above about there probably being some condition |
| 530 | * for the 10f824 stuff that uses ramcfg 3... | 530 | * for the 10f824 stuff that uses ramcfg 3... |
| 531 | */ | 531 | */ |
| 532 | if ( (next->bios.ramcfg_11_03_f0)) { | 532 | if (next->bios.ramcfg_11_03_f0) { |
| 533 | if (next->bios.rammap_11_08_0c) { | 533 | if (next->bios.rammap_11_08_0c) { |
| 534 | if (!(next->bios.ramcfg_11_07_80)) | 534 | if (!next->bios.ramcfg_11_07_80) |
| 535 | mask |= 0x00000020; | 535 | mask |= 0x00000020; |
| 536 | else | 536 | else |
| 537 | data |= 0x00000020; | 537 | data |= 0x00000020; |
| @@ -563,7 +563,7 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 563 | ram_wait(fuc, 0x100710, 0x80000000, 0x80000000, 200000); | 563 | ram_wait(fuc, 0x100710, 0x80000000, 0x80000000, 200000); |
| 564 | } | 564 | } |
| 565 | 565 | ||
| 566 | data = (next->bios.timing_20_30_07) << 8; | 566 | data = next->bios.timing_20_30_07 << 8; |
| 567 | if (next->bios.ramcfg_11_01_01) | 567 | if (next->bios.ramcfg_11_01_01) |
| 568 | data |= 0x80000000; | 568 | data |= 0x80000000; |
| 569 | ram_mask(fuc, 0x100778, 0x00000700, data); | 569 | ram_mask(fuc, 0x100778, 0x00000700, data); |
| @@ -588,7 +588,7 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 588 | ram_wr32(fuc, 0x10f310, 0x00000001); /* REFRESH */ | 588 | ram_wr32(fuc, 0x10f310, 0x00000001); /* REFRESH */ |
| 589 | ram_wr32(fuc, 0x10f210, 0x80000000); /* REFRESH_AUTO = 1 */ | 589 | ram_wr32(fuc, 0x10f210, 0x80000000); /* REFRESH_AUTO = 1 */ |
| 590 | 590 | ||
| 591 | if ((next->bios.ramcfg_11_08_10) && (ram->mode == 2) /*XXX*/) { | 591 | if (next->bios.ramcfg_11_08_10 && (ram->mode == 2) /*XXX*/) { |
| 592 | u32 temp = ram_mask(fuc, 0x10f294, 0xff000000, 0x24000000); | 592 | u32 temp = ram_mask(fuc, 0x10f294, 0xff000000, 0x24000000); |
| 593 | nve0_ram_train(fuc, 0xbc0e0000, 0xa4010000); /*XXX*/ | 593 | nve0_ram_train(fuc, 0xbc0e0000, 0xa4010000); /*XXX*/ |
| 594 | ram_nsec(fuc, 1000); | 594 | ram_nsec(fuc, 1000); |
| @@ -621,8 +621,8 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 621 | data = ram_rd32(fuc, 0x10f978); | 621 | data = ram_rd32(fuc, 0x10f978); |
| 622 | data &= ~0x00046144; | 622 | data &= ~0x00046144; |
| 623 | data |= 0x0000000b; | 623 | data |= 0x0000000b; |
| 624 | if (!(next->bios.ramcfg_11_07_08)) { | 624 | if (!next->bios.ramcfg_11_07_08) { |
| 625 | if (!(next->bios.ramcfg_11_07_04)) | 625 | if (!next->bios.ramcfg_11_07_04) |
| 626 | data |= 0x0000200c; | 626 | data |= 0x0000200c; |
| 627 | else | 627 | else |
| 628 | data |= 0x00000000; | 628 | data |= 0x00000000; |
| @@ -636,11 +636,11 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) | |||
| 636 | ram_wr32(fuc, 0x10f830, data); | 636 | ram_wr32(fuc, 0x10f830, data); |
| 637 | } | 637 | } |
| 638 | 638 | ||
| 639 | if (!(next->bios.ramcfg_11_07_08)) { | 639 | if (!next->bios.ramcfg_11_07_08) { |
| 640 | data = 0x88020000; | 640 | data = 0x88020000; |
| 641 | if ( (next->bios.ramcfg_11_07_04)) | 641 | if ( next->bios.ramcfg_11_07_04) |
| 642 | data |= 0x10000000; | 642 | data |= 0x10000000; |
| 643 | if (!(next->bios.rammap_11_08_10)) | 643 | if (!next->bios.rammap_11_08_10) |
| 644 | data |= 0x00080000; | 644 | data |= 0x00080000; |
| 645 | } else { | 645 | } else { |
| 646 | data = 0xa40e0000; | 646 | data = 0xa40e0000; |
| @@ -689,8 +689,8 @@ nve0_ram_calc_sddr3(struct nouveau_fb *pfb, u32 freq) | |||
| 689 | const u32 runk0 = ram->fN1 << 16; | 689 | const u32 runk0 = ram->fN1 << 16; |
| 690 | const u32 runk1 = ram->fN1; | 690 | const u32 runk1 = ram->fN1; |
| 691 | struct nouveau_ram_data *next = ram->base.next; | 691 | struct nouveau_ram_data *next = ram->base.next; |
| 692 | int vc = !(next->bios.ramcfg_11_02_08); | 692 | int vc = !next->bios.ramcfg_11_02_08; |
| 693 | int mv = !(next->bios.ramcfg_11_02_04); | 693 | int mv = !next->bios.ramcfg_11_02_04; |
| 694 | u32 mask, data; | 694 | u32 mask, data; |
| 695 | 695 | ||
| 696 | ram_mask(fuc, 0x10f808, 0x40000000, 0x40000000); | 696 | ram_mask(fuc, 0x10f808, 0x40000000, 0x40000000); |
| @@ -705,7 +705,7 @@ nve0_ram_calc_sddr3(struct nouveau_fb *pfb, u32 freq) | |||
| 705 | } | 705 | } |
| 706 | 706 | ||
| 707 | ram_mask(fuc, 0x10f200, 0x00000800, 0x00000000); | 707 | ram_mask(fuc, 0x10f200, 0x00000800, 0x00000000); |
| 708 | if ((next->bios.ramcfg_11_03_f0)) | 708 | if (next->bios.ramcfg_11_03_f0) |
| 709 | ram_mask(fuc, 0x10f808, 0x04000000, 0x04000000); | 709 | ram_mask(fuc, 0x10f808, 0x04000000, 0x04000000); |
| 710 | 710 | ||
| 711 | ram_wr32(fuc, 0x10f314, 0x00000001); /* PRECHARGE */ | 711 | ram_wr32(fuc, 0x10f314, 0x00000001); /* PRECHARGE */ |
| @@ -761,7 +761,7 @@ nve0_ram_calc_sddr3(struct nouveau_fb *pfb, u32 freq) | |||
| 761 | 761 | ||
| 762 | ram_mask(fuc, 0x1373f4, 0x00000000, 0x00010010); | 762 | ram_mask(fuc, 0x1373f4, 0x00000000, 0x00010010); |
| 763 | data = ram_rd32(fuc, 0x1373ec) & ~0x00030000; | 763 | data = ram_rd32(fuc, 0x1373ec) & ~0x00030000; |
| 764 | data |= (next->bios.ramcfg_11_03_30) << 12; | 764 | data |= next->bios.ramcfg_11_03_30 << 16; |
| 765 | ram_wr32(fuc, 0x1373ec, data); | 765 | ram_wr32(fuc, 0x1373ec, data); |
| 766 | ram_mask(fuc, 0x1373f4, 0x00000003, 0x00000000); | 766 | ram_mask(fuc, 0x1373f4, 0x00000003, 0x00000000); |
| 767 | ram_mask(fuc, 0x1373f4, 0x00000010, 0x00000000); | 767 | ram_mask(fuc, 0x1373f4, 0x00000010, 0x00000000); |
| @@ -793,8 +793,8 @@ nve0_ram_calc_sddr3(struct nouveau_fb *pfb, u32 freq) | |||
| 793 | } | 793 | } |
| 794 | } | 794 | } |
| 795 | 795 | ||
| 796 | if ( (next->bios.ramcfg_11_02_40) || | 796 | if (next->bios.ramcfg_11_02_40 || |
| 797 | (next->bios.ramcfg_11_07_10)) { | 797 | next->bios.ramcfg_11_07_10) { |
| 798 | ram_mask(fuc, 0x132040, 0x00010000, 0x00010000); | 798 | ram_mask(fuc, 0x132040, 0x00010000, 0x00010000); |
| 799 | ram_nsec(fuc, 20000); | 799 | ram_nsec(fuc, 20000); |
| 800 | } | 800 | } |
| @@ -810,13 +810,13 @@ nve0_ram_calc_sddr3(struct nouveau_fb *pfb, u32 freq) | |||
| 810 | 810 | ||
| 811 | mask = 0x00010000; | 811 | mask = 0x00010000; |
| 812 | data = 0x00000000; | 812 | data = 0x00000000; |
| 813 | if (!(next->bios.ramcfg_11_02_80)) | 813 | if (!next->bios.ramcfg_11_02_80) |
| 814 | data |= 0x03000000; | 814 | data |= 0x03000000; |
| 815 | if (!(next->bios.ramcfg_11_02_40)) | 815 | if (!next->bios.ramcfg_11_02_40) |
| 816 | data |= 0x00002000; | 816 | data |= 0x00002000; |
| 817 | if (!(next->bios.ramcfg_11_07_10)) | 817 | if (!next->bios.ramcfg_11_07_10) |
| 818 | data |= 0x00004000; | 818 | data |= 0x00004000; |
| 819 | if (!(next->bios.ramcfg_11_07_08)) | 819 | if (!next->bios.ramcfg_11_07_08) |
| 820 | data |= 0x00000003; | 820 | data |= 0x00000003; |
| 821 | else | 821 | else |
| 822 | data |= 0x14000000; | 822 | data |= 0x14000000; |
| @@ -844,16 +844,16 @@ nve0_ram_calc_sddr3(struct nouveau_fb *pfb, u32 freq) | |||
| 844 | 844 | ||
| 845 | mask = 0x33f00000; | 845 | mask = 0x33f00000; |
| 846 | data = 0x00000000; | 846 | data = 0x00000000; |
| 847 | if (!(next->bios.ramcfg_11_01_04)) | 847 | if (!next->bios.ramcfg_11_01_04) |
| 848 | data |= 0x20200000; | 848 | data |= 0x20200000; |
| 849 | if (!(next->bios.ramcfg_11_07_80)) | 849 | if (!next->bios.ramcfg_11_07_80) |
| 850 | data |= 0x12800000; | 850 | data |= 0x12800000; |
| 851 | /*XXX: see note above about there probably being some condition | 851 | /*XXX: see note above about there probably being some condition |
| 852 | * for the 10f824 stuff that uses ramcfg 3... | 852 | * for the 10f824 stuff that uses ramcfg 3... |
| 853 | */ | 853 | */ |
| 854 | if ( (next->bios.ramcfg_11_03_f0)) { | 854 | if (next->bios.ramcfg_11_03_f0) { |
| 855 | if (next->bios.rammap_11_08_0c) { | 855 | if (next->bios.rammap_11_08_0c) { |
| 856 | if (!(next->bios.ramcfg_11_07_80)) | 856 | if (!next->bios.ramcfg_11_07_80) |
| 857 | mask |= 0x00000020; | 857 | mask |= 0x00000020; |
| 858 | else | 858 | else |
| 859 | data |= 0x00000020; | 859 | data |= 0x00000020; |
| @@ -876,7 +876,7 @@ nve0_ram_calc_sddr3(struct nouveau_fb *pfb, u32 freq) | |||
| 876 | data = next->bios.timing_20_2c_1fc0; | 876 | data = next->bios.timing_20_2c_1fc0; |
| 877 | ram_mask(fuc, 0x10f24c, 0x7f000000, data << 24); | 877 | ram_mask(fuc, 0x10f24c, 0x7f000000, data << 24); |
| 878 | 878 | ||
| 879 | ram_mask(fuc, 0x10f224, 0x001f0000, next->bios.timing_20_30_f8); | 879 | ram_mask(fuc, 0x10f224, 0x001f0000, next->bios.timing_20_30_f8 << 16); |
| 880 | 880 | ||
| 881 | ram_wr32(fuc, 0x10f090, 0x4000007f); | 881 | ram_wr32(fuc, 0x10f090, 0x4000007f); |
| 882 | ram_nsec(fuc, 1000); | 882 | ram_nsec(fuc, 1000); |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/ibus/nve0.c b/drivers/gpu/drm/nouveau/core/subdev/ibus/nve0.c index 7120124dceac..ebef970a0645 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/ibus/nve0.c +++ b/drivers/gpu/drm/nouveau/core/subdev/ibus/nve0.c | |||
| @@ -95,6 +95,23 @@ nve0_ibus_intr(struct nouveau_subdev *subdev) | |||
| 95 | } | 95 | } |
| 96 | 96 | ||
| 97 | static int | 97 | static int |
| 98 | nve0_ibus_init(struct nouveau_object *object) | ||
| 99 | { | ||
| 100 | struct nve0_ibus_priv *priv = (void *)object; | ||
| 101 | int ret = nouveau_ibus_init(&priv->base); | ||
| 102 | if (ret == 0) { | ||
| 103 | nv_mask(priv, 0x122318, 0x0003ffff, 0x00001000); | ||
| 104 | nv_mask(priv, 0x12231c, 0x0003ffff, 0x00000200); | ||
| 105 | nv_mask(priv, 0x122310, 0x0003ffff, 0x00000800); | ||
| 106 | nv_mask(priv, 0x122348, 0x0003ffff, 0x00000100); | ||
| 107 | nv_mask(priv, 0x1223b0, 0x0003ffff, 0x00000fff); | ||
| 108 | nv_mask(priv, 0x122348, 0x0003ffff, 0x00000200); | ||
| 109 | nv_mask(priv, 0x122358, 0x0003ffff, 0x00002880); | ||
| 110 | } | ||
| 111 | return ret; | ||
| 112 | } | ||
| 113 | |||
| 114 | static int | ||
| 98 | nve0_ibus_ctor(struct nouveau_object *parent, struct nouveau_object *engine, | 115 | nve0_ibus_ctor(struct nouveau_object *parent, struct nouveau_object *engine, |
| 99 | struct nouveau_oclass *oclass, void *data, u32 size, | 116 | struct nouveau_oclass *oclass, void *data, u32 size, |
| 100 | struct nouveau_object **pobject) | 117 | struct nouveau_object **pobject) |
| @@ -117,7 +134,7 @@ nve0_ibus_oclass = { | |||
| 117 | .ofuncs = &(struct nouveau_ofuncs) { | 134 | .ofuncs = &(struct nouveau_ofuncs) { |
| 118 | .ctor = nve0_ibus_ctor, | 135 | .ctor = nve0_ibus_ctor, |
| 119 | .dtor = _nouveau_ibus_dtor, | 136 | .dtor = _nouveau_ibus_dtor, |
| 120 | .init = _nouveau_ibus_init, | 137 | .init = nve0_ibus_init, |
| 121 | .fini = _nouveau_ibus_fini, | 138 | .fini = _nouveau_ibus_fini, |
| 122 | }, | 139 | }, |
| 123 | }; | 140 | }; |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/host.fuc b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/host.fuc index 2284ecb1c9b8..c2bb616a8da5 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/host.fuc +++ b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/host.fuc | |||
| @@ -83,7 +83,7 @@ host_send: | |||
| 83 | // increment GET | 83 | // increment GET |
| 84 | add b32 $r1 0x1 | 84 | add b32 $r1 0x1 |
| 85 | and $r14 $r1 #fifo_qmaskf | 85 | and $r14 $r1 #fifo_qmaskf |
| 86 | nv_iowr(NV_PPWR_FIFO_GET(0), $r1) | 86 | nv_iowr(NV_PPWR_FIFO_GET(0), $r14) |
| 87 | bra #host_send | 87 | bra #host_send |
| 88 | host_send_done: | 88 | host_send_done: |
| 89 | ret | 89 | ret |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nv108.fuc.h b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nv108.fuc.h index 4bd43a99fdcc..39a5dc150a05 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nv108.fuc.h +++ b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nv108.fuc.h | |||
| @@ -1018,7 +1018,7 @@ uint32_t nv108_pwr_code[] = { | |||
| 1018 | 0xb600023f, | 1018 | 0xb600023f, |
| 1019 | 0x1ec40110, | 1019 | 0x1ec40110, |
| 1020 | 0x04b0400f, | 1020 | 0x04b0400f, |
| 1021 | 0xbd0001f6, | 1021 | 0xbd000ef6, |
| 1022 | 0xc70ef404, | 1022 | 0xc70ef404, |
| 1023 | /* 0x0328: host_send_done */ | 1023 | /* 0x0328: host_send_done */ |
| 1024 | /* 0x032a: host_recv */ | 1024 | /* 0x032a: host_recv */ |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nva3.fuc.h b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nva3.fuc.h index 5a73fa620978..254205cd5166 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nva3.fuc.h +++ b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nva3.fuc.h | |||
| @@ -1124,7 +1124,7 @@ uint32_t nva3_pwr_code[] = { | |||
| 1124 | 0x0f1ec401, | 1124 | 0x0f1ec401, |
| 1125 | 0x04b007f1, | 1125 | 0x04b007f1, |
| 1126 | 0xd00604b6, | 1126 | 0xd00604b6, |
| 1127 | 0x04bd0001, | 1127 | 0x04bd000e, |
| 1128 | /* 0x03cb: host_send_done */ | 1128 | /* 0x03cb: host_send_done */ |
| 1129 | 0xf8ba0ef4, | 1129 | 0xf8ba0ef4, |
| 1130 | /* 0x03cd: host_recv */ | 1130 | /* 0x03cd: host_recv */ |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nvc0.fuc.h b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nvc0.fuc.h index 4dba00d2dd1a..7ac87405d01b 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nvc0.fuc.h +++ b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nvc0.fuc.h | |||
| @@ -1124,7 +1124,7 @@ uint32_t nvc0_pwr_code[] = { | |||
| 1124 | 0x0f1ec401, | 1124 | 0x0f1ec401, |
| 1125 | 0x04b007f1, | 1125 | 0x04b007f1, |
| 1126 | 0xd00604b6, | 1126 | 0xd00604b6, |
| 1127 | 0x04bd0001, | 1127 | 0x04bd000e, |
| 1128 | /* 0x03cb: host_send_done */ | 1128 | /* 0x03cb: host_send_done */ |
| 1129 | 0xf8ba0ef4, | 1129 | 0xf8ba0ef4, |
| 1130 | /* 0x03cd: host_recv */ | 1130 | /* 0x03cd: host_recv */ |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nvd0.fuc.h b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nvd0.fuc.h index 5e24c6bc041d..cd9ff1a73284 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nvd0.fuc.h +++ b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/nvd0.fuc.h | |||
| @@ -1033,7 +1033,7 @@ uint32_t nvd0_pwr_code[] = { | |||
| 1033 | 0xb6026b21, | 1033 | 0xb6026b21, |
| 1034 | 0x1ec40110, | 1034 | 0x1ec40110, |
| 1035 | 0xb007f10f, | 1035 | 0xb007f10f, |
| 1036 | 0x0001d004, | 1036 | 0x000ed004, |
| 1037 | 0x0ef404bd, | 1037 | 0x0ef404bd, |
| 1038 | /* 0x0365: host_send_done */ | 1038 | /* 0x0365: host_send_done */ |
| 1039 | /* 0x0367: host_recv */ | 1039 | /* 0x0367: host_recv */ |
diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/nouveau_display.c index 26b5647188ef..47ad74255bf1 100644 --- a/drivers/gpu/drm/nouveau/nouveau_display.c +++ b/drivers/gpu/drm/nouveau/nouveau_display.c | |||
| @@ -736,6 +736,9 @@ nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb, | |||
| 736 | fb->bits_per_pixel, fb->pitches[0], crtc->x, crtc->y, | 736 | fb->bits_per_pixel, fb->pitches[0], crtc->x, crtc->y, |
| 737 | new_bo->bo.offset }; | 737 | new_bo->bo.offset }; |
| 738 | 738 | ||
| 739 | /* Keep vblanks on during flip, for the target crtc of this flip */ | ||
| 740 | drm_vblank_get(dev, nouveau_crtc(crtc)->index); | ||
| 741 | |||
| 739 | /* Emit a page flip */ | 742 | /* Emit a page flip */ |
| 740 | if (nv_device(drm->device)->card_type >= NV_50) { | 743 | if (nv_device(drm->device)->card_type >= NV_50) { |
| 741 | ret = nv50_display_flip_next(crtc, fb, chan, swap_interval); | 744 | ret = nv50_display_flip_next(crtc, fb, chan, swap_interval); |
| @@ -779,6 +782,7 @@ nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb, | |||
| 779 | return 0; | 782 | return 0; |
| 780 | 783 | ||
| 781 | fail_unreserve: | 784 | fail_unreserve: |
| 785 | drm_vblank_put(dev, nouveau_crtc(crtc)->index); | ||
| 782 | ttm_bo_unreserve(&old_bo->bo); | 786 | ttm_bo_unreserve(&old_bo->bo); |
| 783 | fail_unpin: | 787 | fail_unpin: |
| 784 | mutex_unlock(&chan->cli->mutex); | 788 | mutex_unlock(&chan->cli->mutex); |
| @@ -817,6 +821,9 @@ nouveau_finish_page_flip(struct nouveau_channel *chan, | |||
| 817 | drm_send_vblank_event(dev, crtcid, s->event); | 821 | drm_send_vblank_event(dev, crtcid, s->event); |
| 818 | } | 822 | } |
| 819 | 823 | ||
| 824 | /* Give up ownership of vblank for page-flipped crtc */ | ||
| 825 | drm_vblank_put(dev, s->crtc); | ||
| 826 | |||
| 820 | list_del(&s->head); | 827 | list_del(&s->head); |
| 821 | if (ps) | 828 | if (ps) |
| 822 | *ps = *s; | 829 | *ps = *s; |
