hc
2023-07-06 0d92c6001e626cf3cfa86b826ccc10a16115901e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2018 Etnaviv Project
 */
 
#include "etnaviv_gpu.h"
 
static const struct etnaviv_chip_identity etnaviv_chip_identities[] = {
   {
       .model = 0x7000,
       .revision = 0x6214,
       .stream_count = 16,
       .register_max = 64,
       .thread_count = 1024,
       .shader_core_count = 4,
       .vertex_cache_size = 16,
       .vertex_output_buffer_size = 1024,
       .pixel_pipes = 2,
       .instruction_count = 512,
       .num_constants = 320,
       .buffer_size = 0,
       .varyings_count = 16,
       .features = 0xe0287cad,
       .minor_features0 = 0xc1799eff,
       .minor_features1 = 0xfefbfad9,
       .minor_features2 = 0xeb9d4fbf,
       .minor_features3 = 0xedfffced,
       .minor_features4 = 0xdb0dafc7,
       .minor_features5 = 0xbb5ac333,
       .minor_features6 = 0xfc8ee200,
       .minor_features7 = 0x03fbfa6f,
       .minor_features8 = 0x00ef0ef0,
       .minor_features9 = 0x0edbf03c,
       .minor_features10 = 0x90044250,
       .minor_features11 = 0x00000024,
   },
};
 
bool etnaviv_fill_identity_from_hwdb(struct etnaviv_gpu *gpu)
{
   struct etnaviv_chip_identity *ident = &gpu->identity;
   int i;
 
   for (i = 0; i < ARRAY_SIZE(etnaviv_chip_identities); i++) {
       if (etnaviv_chip_identities[i].model == ident->model &&
           etnaviv_chip_identities[i].revision == ident->revision) {
           memcpy(ident, &etnaviv_chip_identities[i],
                  sizeof(*ident));
           return true;
       }
   }
 
   return false;
}