drm/etnaviv: Add nn_core_count to chip feature struct
authorTomeu Vizoso <tomeu.vizoso@collabora.com>
Thu, 1 Dec 2022 10:30:21 +0000 (11:30 +0100)
committerLucas Stach <l.stach@pengutronix.de>
Wed, 1 Feb 2023 15:32:26 +0000 (16:32 +0100)
We will use these for differentiating between GPUs and NPUs, as the
downstream driver does.

Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
drivers/gpu/drm/etnaviv/etnaviv_gpu.h
drivers/gpu/drm/etnaviv/etnaviv_hwdb.c

index f1204b070fb8dde992bf4429501e5f6eb2ec6e01..2ed5f731a66ce178b6a26ffc503b15d4a5399f50 100644 (file)
@@ -51,6 +51,9 @@ struct etnaviv_chip_identity {
        /* Number of shader cores. */
        u32 shader_core_count;
 
+       /* Number of Neural Network cores. */
+       u32 nn_core_count;
+
        /* Size of the vertex cache. */
        u32 vertex_cache_size;
 
index 57f334e241896a59ef9d9a7d0dd4178e0a7d0a23..f956362ddd79c34ddb1b71e96644e02923d44084 100644 (file)
@@ -16,6 +16,7 @@ static const struct etnaviv_chip_identity etnaviv_chip_identities[] = {
                .register_max = 64,
                .thread_count = 128,
                .shader_core_count = 1,
+               .nn_core_count = 0,
                .vertex_cache_size = 8,
                .vertex_output_buffer_size = 1024,
                .pixel_pipes = 1,
@@ -47,6 +48,7 @@ static const struct etnaviv_chip_identity etnaviv_chip_identities[] = {
                .register_max = 64,
                .thread_count = 512,
                .shader_core_count = 2,
+               .nn_core_count = 0,
                .vertex_cache_size = 16,
                .vertex_output_buffer_size = 1024,
                .pixel_pipes = 1,
@@ -78,6 +80,7 @@ static const struct etnaviv_chip_identity etnaviv_chip_identities[] = {
                .register_max = 64,
                .thread_count = 512,
                .shader_core_count = 2,
+               .nn_core_count = 0,
                .vertex_cache_size = 16,
                .vertex_output_buffer_size = 1024,
                .pixel_pipes = 1,
@@ -140,6 +143,7 @@ static const struct etnaviv_chip_identity etnaviv_chip_identities[] = {
                .register_max = 64,
                .thread_count = 1024,
                .shader_core_count = 4,
+               .nn_core_count = 0,
                .vertex_cache_size = 16,
                .vertex_output_buffer_size = 1024,
                .pixel_pipes = 2,