turnip: remove unused RB_UNKNOWN_8E04_blit

New blit code doesn't change this value, and different values seem to be
related to the driver version and not the GPU version.

Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4608>
This commit is contained in:
Jonathan Marek 2020-04-17 12:35:53 -04:00 committed by Marge Bot
parent c683138689
commit f81e56c9a0
2 changed files with 0 additions and 3 deletions

View file

@ -265,7 +265,6 @@ tu_physical_device_init(struct tu_physical_device *device,
switch (device->gpu_id) {
case 618:
device->magic.RB_UNKNOWN_8E04_blit = 0x00100000;
device->ccu_offset_gmem = 0x7c000; /* 0x7e000 in some cases? */
device->ccu_offset_bypass = 0x10000;
device->magic.PC_UNKNOWN_9805 = 0x0;
@ -273,7 +272,6 @@ tu_physical_device_init(struct tu_physical_device *device,
break;
case 630:
case 640:
device->magic.RB_UNKNOWN_8E04_blit = 0x01000000;
device->ccu_offset_gmem = 0xf8000;
device->ccu_offset_bypass = 0x20000;
device->magic.PC_UNKNOWN_9805 = 0x1;

View file

@ -328,7 +328,6 @@ struct tu_physical_device
#define GMEM_ALIGN_H 4
struct {
uint32_t RB_UNKNOWN_8E04_blit; /* for CP_BLIT's */
uint32_t PC_UNKNOWN_9805;
uint32_t SP_UNKNOWN_A0F8;
} magic;