radv: enable POLARIS12 support.
authorDave Airlie <airlied@redhat.com>
Fri, 5 May 2017 00:27:33 +0000 (10:27 +1000)
committerDave Airlie <airlied@redhat.com>
Fri, 5 May 2017 01:07:40 +0000 (11:07 +1000)
This just adds the chip in the right places.

We don't set the partial_vs_wave workaround, as radeonsi
doesn't, but have to confirm it's not required.

Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Cc: "17.1" <mesa-stable@lists.freedesktop.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/amd/common/ac_llvm_util.c
src/amd/vulkan/radv_device.c
src/amd/vulkan/si_cmd_buffer.c
src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c

index 8827975..e20456e 100644 (file)
@@ -108,6 +108,7 @@ static const char *ac_get_llvm_processor_name(enum radeon_family family)
        case CHIP_POLARIS10:
                return "polaris10";
        case CHIP_POLARIS11:
+       case CHIP_POLARIS12:
                return "polaris11";
        default:
                return "";
index 648103d..921b8e4 100644 (file)
@@ -917,6 +917,7 @@ radv_device_init_gs_info(struct radv_device *device)
        case CHIP_FIJI:
        case CHIP_POLARIS10:
        case CHIP_POLARIS11:
+       case CHIP_POLARIS12:
                device->gs_table_depth = 32;
                return;
        default:
index 41625aa..1382272 100644 (file)
@@ -297,6 +297,7 @@ si_emit_config(struct radv_physical_device *physical_device,
                raster_config_1 = 0x0000002a;
                break;
        case CHIP_POLARIS11:
+       case CHIP_POLARIS12:
                raster_config = 0x16000012;
                raster_config_1 = 0x00000000;
                break;
index 783567f..629da31 100644 (file)
@@ -107,6 +107,7 @@ get_chip_name(enum radeon_family family)
        case CHIP_FIJI: return "AMD RADV FIJI";
        case CHIP_POLARIS10: return "AMD RADV POLARIS10";
        case CHIP_POLARIS11: return "AMD RADV POLARIS11";
+       case CHIP_POLARIS12: return "AMD RADV POLARIS12";
        case CHIP_STONEY: return "AMD RADV STONEY";
        default: return "AMD RADV unknown";
        }
@@ -271,6 +272,10 @@ do_winsys_init(struct radv_amdgpu_winsys *ws, int fd)
                ws->family = FAMILY_VI;
                ws->rev_id = VI_POLARIS11_M_A0;
                break;
+       case CHIP_POLARIS12:
+               ws->family = FAMILY_VI;
+               ws->rev_id = VI_POLARIS12_V_A0;
+               break;
        default:
                fprintf(stderr, "amdgpu: Unknown family.\n");
                goto fail;