Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/panfrost: Don't set L2_MMU_CONFIG quirks

L2_MMU_CONFIG is an implementation-defined register. Different Mali GPUs
define slightly different MAX_READS and MAX_WRITES fields, which
throttle outstanding reads and writes when set to non-zero values. When
left as zero, reads and writes are not throttled.

Both kbase and panfrost always zero these registers. Per discussion with
Steven Price, there are two reasons these quirks may be used:

1. Simulating slower memory subsystems. This use case is only of
interest to system-on-chip designers; it is not relevant to mainline.

2. Working around broken memory subsystems. Hopefully we never see this
case in mainline. If we do, we'll need to set this register based on
an SoC-compatible, rather than generally matching on the GPU model.

To the best of our knowledge, these fields are zero at reset, so the
write is not necessary. Let's remove the write to aid porting to new
Mali GPUs, which have different layouts for the L2_MMU_CONFIG register.

Suggested-by: Steven Price <steven.price@arm.com>
Reviewed-by: Steven Price <steven.price@arm.com>
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220525145754.25866-8-alyssa.rosenzweig@collabora.com

-12
-12
drivers/gpu/drm/panfrost/panfrost_gpu.c
··· 127 127 gpu_write(pfdev, GPU_TILER_CONFIG, quirks); 128 128 129 129 130 - quirks = gpu_read(pfdev, GPU_L2_MMU_CONFIG); 131 - 132 - /* Limit read & write ID width for AXI */ 133 - if (panfrost_has_hw_feature(pfdev, HW_FEATURE_3BIT_EXT_RW_L2_MMU_CONFIG)) 134 - quirks &= ~(L2_MMU_CONFIG_3BIT_LIMIT_EXTERNAL_READS | 135 - L2_MMU_CONFIG_3BIT_LIMIT_EXTERNAL_WRITES); 136 - else 137 - quirks &= ~(L2_MMU_CONFIG_LIMIT_EXTERNAL_READS | 138 - L2_MMU_CONFIG_LIMIT_EXTERNAL_WRITES); 139 - 140 - gpu_write(pfdev, GPU_L2_MMU_CONFIG, quirks); 141 - 142 130 quirks = 0; 143 131 if ((panfrost_model_eq(pfdev, 0x860) || panfrost_model_eq(pfdev, 0x880)) && 144 132 pfdev->features.revision >= 0x2000)