freedreno: add adreno 650
[mesa.git] / src / gallium / drivers / freedreno / freedreno_screen.h
index 13e48dd5d3dbcf1df5348902fdeb40c84289033c..0337866fd9b81d05b738bb454ef689073188d6a0 100644 (file)
@@ -200,6 +200,12 @@ is_a6xx(struct fd_screen *screen)
        return (screen->gpu_id >= 600) && (screen->gpu_id < 700);
 }
 
+static inline boolean
+is_a650(struct fd_screen *screen)
+{
+       return screen->gpu_id == 650;
+}
+
 /* is it using the ir3 compiler (shader isa introduced with a3xx)? */
 static inline boolean
 is_ir3(struct fd_screen *screen)