The list of supported GPUs contains the GPU model, along with the SoCs they're found in. The SoC information can easily get out of date, as typically GPU models will be integrated into many different SoCs and upstream support for these can potentially happen over a long stretch of time without necessarily requiring any GPU driver changes.
Replace the SoC information with the BVNC instead. This uniquely identifies a GPU implementation and is useful in cases where a GPU model may have multiple implementations due to, e.g. hardware errata having been fixed, and the driver doesn't yet support all of them. Signed-off-by: Frank Binns <[email protected]> --- drivers/gpu/drm/imagination/pvr_drv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/imagination/pvr_drv.c b/drivers/gpu/drm/imagination/pvr_drv.c index 8897b3bdeb4a..a22da0b911d5 100644 --- a/drivers/gpu/drm/imagination/pvr_drv.c +++ b/drivers/gpu/drm/imagination/pvr_drv.c @@ -43,8 +43,8 @@ * * This driver supports the following PowerVR/IMG graphics cores from Imagination Technologies: * - * * AXE-1-16M (found in Texas Instruments AM62) - * * BXS-4-64 MC1 (found in Texas Instruments J721S2/AM68) + * * AXE-1-16M (33.15.11.3) + * * BXS-4-64 MC1 (36.53.104.796) */ /** -- 2.43.0
