diff options
author | Rodrigo Vivi <[email protected]> | 2018-08-30 14:39:27 -0700 |
---|---|---|
committer | Rodrigo Vivi <[email protected]> | 2018-08-31 13:57:52 -0700 |
commit | e8c42ed4abaca798ab218ede97eaac30fbb8bd8e (patch) | |
tree | 8488a46f4f0e5addb0c188459c8eef7d01c59f1e /src | |
parent | 886a048febcea2cd6e0e2cdaa2522bbf2b0f48ab (diff) |
intel: Introducing Amber Lake platform
Amber Lake uses the same gen graphics as Kaby Lake, including a id
that were previously marked as reserved on Kaby Lake, but that
now is moved to AML page.
This follows the ids and approach used on kernel's commit
e364672477a1 ("drm/i915/aml: Introducing Amber Lake platform")
Reported-by: Timo Aaltonen <[email protected]>
Cc: José Roberto de Souza <[email protected]>
Cc: Anuj Phogat <[email protected]>
Signed-off-by: Rodrigo Vivi <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/compiler/test_eu_validate.cpp | 1 | ||||
-rw-r--r-- | src/intel/dev/gen_device_info.c | 1 | ||||
-rw-r--r-- | src/intel/tools/aubinator.c | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/intel/compiler/test_eu_validate.cpp b/src/intel/compiler/test_eu_validate.cpp index b132b87a1a3..744ae5806da 100644 --- a/src/intel/compiler/test_eu_validate.cpp +++ b/src/intel/compiler/test_eu_validate.cpp @@ -40,6 +40,7 @@ static const struct gen_info { { "skl", }, { "bxt", }, { "kbl", }, + { "aml", }, { "glk", }, { "cfl", }, { "cnl", }, diff --git a/src/intel/dev/gen_device_info.c b/src/intel/dev/gen_device_info.c index b0ae4d18034..3cece52a041 100644 --- a/src/intel/dev/gen_device_info.c +++ b/src/intel/dev/gen_device_info.c @@ -57,6 +57,7 @@ gen_device_name_to_pci_device_id(const char *name) { "skl", 0x1912 }, { "bxt", 0x5A85 }, { "kbl", 0x5912 }, + { "aml", 0x591C }, { "glk", 0x3185 }, { "cfl", 0x3E9B }, { "cnl", 0x5a52 }, diff --git a/src/intel/tools/aubinator.c b/src/intel/tools/aubinator.c index edd11fe0f50..55672fa073c 100644 --- a/src/intel/tools/aubinator.c +++ b/src/intel/tools/aubinator.c @@ -282,7 +282,7 @@ int main(int argc, char *argv[]) if (id < 0) { fprintf(stderr, "can't parse gen: '%s', expected brw, g4x, ilk, " "snb, ivb, hsw, byt, bdw, chv, skl, bxt, kbl, " - "glk, cfl, cnl, icl", optarg); + "aml, glk, cfl, cnl, icl", optarg); exit(EXIT_FAILURE); } else { pci_id = id; |