Edit

kc3-lang/angle/src/libANGLE/renderer/driver_utils.cpp

Branch :

  • Show log

    Commit

  • Author : Jiawei-Shao
    Date : 2016-10-19 11:19:51
    Hash : 9f4583dd
    Message : Add Platform Detection and Tighten the workarounds on Intel GPU This patch intends to add platform detection to ANGLE and tighten the driver bug workarounds on Intel GPU. BUG=angleproject:1548 Change-Id: I1ea57e174f688a175da8b658de4337295037fcab Reviewed-on: https://chromium-review.googlesource.com/399914 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Geoff Lang <geofflang@chromium.org>

  • src/libANGLE/renderer/driver_utils.cpp
  • //
    // Copyright (c) 2016 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    
    // driver_utils.h : provides more information about current driver.
    
    #include <algorithm>
    
    #include "libANGLE/renderer/driver_utils.h"
    
    namespace rx
    {
    // Intel
    // Referenced from https://cgit.freedesktop.org/vaapi/intel-driver/tree/src/i965_pciids.h
    namespace
    {
    // gen7
    const uint32_t Haswell[] = {
        0x0402, 0x0406, 0x040A, 0x040B, 0x040E, 0x0C02, 0x0C06, 0x0C0A, 0x0C0B, 0x0C0E,
        0x0A02, 0x0A06, 0x0A0A, 0x0A0B, 0x0A0E, 0x0D02, 0x0D06, 0x0D0A, 0x0D0B, 0x0D0E,  // hsw_gt1
        0x0412, 0x0416, 0x041A, 0x041B, 0x041E, 0x0C12, 0x0C16, 0x0C1A, 0x0C1B, 0x0C1E,
        0x0A12, 0x0A16, 0x0A1A, 0x0A1B, 0x0A1E, 0x0D12, 0x0D16, 0x0D1A, 0x0D1B, 0x0D1E,  // hsw_gt2
        0x0422, 0x0426, 0x042A, 0x042B, 0x042E, 0x0C22, 0x0C26, 0x0C2A, 0x0C2B, 0x0C2E,
        0x0A22, 0x0A26, 0x0A2A, 0x0A2B, 0x0A2E, 0x0D22, 0x0D26, 0x0D2A, 0x0D2B, 0x0D2E  // hsw_gt3
    };
    
    // gen8
    const uint32_t Broadwell[] = {0x1602, 0x1606, 0x160A, 0x160B, 0x160D, 0x160E,
                                  0x1612, 0x1616, 0x161A, 0x161B, 0x161D, 0x161E,
                                  0x1622, 0x1626, 0x162A, 0x162B, 0x162D, 0x162E};
    
    const uint32_t CherryView[] = {0x22B0, 0x22B1, 0x22B2, 0x22B3};
    
    // gen9
    const uint32_t Skylake[] = {0x1902, 0x1906, 0x190A, 0x190B, 0x190E, 0x1912, 0x1913, 0x1915, 0x1916,
                                0x1917, 0x191A, 0x191B, 0x191D, 0x191E, 0x1921, 0x1923, 0x1926, 0x1927,
                                0x192A, 0x192B, 0x192D, 0x1932, 0x193A, 0x193B, 0x193D};
    
    const uint32_t Broxton[] = {0x0A84, 0x1A84, 0x1A85, 0x5A84, 0x5A85};
    
    // gen9p5
    const uint32_t Kabylake[] = {0x5916, 0x5913, 0x5906, 0x5926, 0x5921, 0x5915, 0x590E,
                                 0x591E, 0x5912, 0x5917, 0x5902, 0x591B, 0x593B, 0x590B,
                                 0x591A, 0x590A, 0x591D, 0x5908, 0x5923, 0x5927};
    
    }  // anonymous namespace
    
    bool IsHaswell(uint32_t DeviceId)
    {
        return std::find(std::begin(Haswell), std::end(Haswell), DeviceId) != std::end(Haswell);
    }
    
    bool IsBroadwell(uint32_t DeviceId)
    {
        return std::find(std::begin(Broadwell), std::end(Broadwell), DeviceId) != std::end(Broadwell);
    }
    
    bool IsCherryView(uint32_t DeviceId)
    {
        return std::find(std::begin(CherryView), std::end(CherryView), DeviceId) !=
               std::end(CherryView);
    }
    
    bool IsSkylake(uint32_t DeviceId)
    {
        return std::find(std::begin(Skylake), std::end(Skylake), DeviceId) != std::end(Skylake);
    }
    
    bool IsBroxton(uint32_t DeviceId)
    {
        return std::find(std::begin(Broxton), std::end(Broxton), DeviceId) != std::end(Broxton);
    }
    
    bool IsKabylake(uint32_t DeviceId)
    {
        return std::find(std::begin(Kabylake), std::end(Kabylake), DeviceId) != std::end(Kabylake);
    }
    
    }  // namespace rx