From 190b6e5664f8a541f0f38da5dff65d39adf1b549 Mon Sep 17 00:00:00 2001 From: Alexey Sheplyakov Date: Tue, 16 Feb 2021 17:12:40 +0400 Subject: [PATCH 619/625] panfrost: compatibility with Baikal-M firmware from SDK-M 4.3 Added .compatible string so the driver can be used on Baikal-M systems with firmware from SDK-M 4.3. Note: the driver should be explicitly enabled with enable_broken_machines=y module parameter --- drivers/gpu/drm/panfrost/panfrost_drv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/panfrost/panfrost_drv.c b/drivers/gpu/drm/panfrost/panfrost_drv.c index 689be734ed20..7376b17bc44a 100644 --- a/drivers/gpu/drm/panfrost/panfrost_drv.c +++ b/drivers/gpu/drm/panfrost/panfrost_drv.c @@ -681,6 +681,7 @@ static const struct of_device_id dt_match[] = { { .compatible = "arm,mali-t860", .data = &default_data, }, { .compatible = "arm,mali-t880", .data = &default_data, }, { .compatible = "arm,mali-bifrost", .data = &default_data, }, + { .compatible = "arm,mali-midgard", .data = &default_data, }, {} }; MODULE_DEVICE_TABLE(of, dt_match); -- 2.31.1