mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 01:55:51 +02:00
drm/msm/adreno: Trust the SSoT UBWC config
Now that the highest_bank_bit value is retrieved from the running system and the global config has been part of the tree for a couple of releases, there is no reason to keep any hardcoded values inside the GPU driver. Get rid of them. Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> Reviewed-by: Rob Clark <robin.clark@oss.qualcomm.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Reviewed-by: Akhil P Oommen <akhilpo@oss.qualcomm.com> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Patchwork: https://patchwork.freedesktop.org/patch/726488/ Link: https://lore.kernel.org/r/20260520-ubwc-rework-v5-4-72f2749bc807@oss.qualcomm.com
This commit is contained in:
parent
78de481c75
commit
d158886cba
|
|
@ -1725,7 +1725,6 @@ static struct msm_gpu *a5xx_gpu_init(struct drm_device *dev)
|
|||
struct msm_drm_private *priv = dev->dev_private;
|
||||
struct platform_device *pdev = priv->gpu_pdev;
|
||||
struct adreno_platform_config *config = pdev->dev.platform_data;
|
||||
const struct qcom_ubwc_cfg_data *common_cfg;
|
||||
struct a5xx_gpu *a5xx_gpu = NULL;
|
||||
struct adreno_gpu *adreno_gpu;
|
||||
struct msm_gpu *gpu;
|
||||
|
|
@ -1769,13 +1768,9 @@ static struct msm_gpu *a5xx_gpu_init(struct drm_device *dev)
|
|||
a5xx_preempt_init(gpu);
|
||||
|
||||
/* Inherit the common config and make some necessary fixups */
|
||||
common_cfg = qcom_ubwc_config_get_data();
|
||||
if (IS_ERR(common_cfg))
|
||||
return ERR_CAST(common_cfg);
|
||||
|
||||
/* Copy the data into the internal struct to drop the const qualifier (temporarily) */
|
||||
adreno_gpu->_ubwc_config = *common_cfg;
|
||||
adreno_gpu->ubwc_config = &adreno_gpu->_ubwc_config;
|
||||
adreno_gpu->ubwc_config = qcom_ubwc_config_get_data();
|
||||
if (IS_ERR(adreno_gpu->ubwc_config))
|
||||
return ERR_CAST(adreno_gpu->ubwc_config);
|
||||
|
||||
adreno_gpu->uche_trap_base = 0x0001ffffffff0000ull;
|
||||
|
||||
|
|
|
|||
|
|
@ -733,82 +733,6 @@ static void a6xx_set_cp_protect(struct msm_gpu *gpu)
|
|||
gpu_write(gpu, REG_A6XX_CP_PROTECT(protect->count_max - 1), protect->regs[i]);
|
||||
}
|
||||
|
||||
static int a6xx_calc_ubwc_config(struct adreno_gpu *gpu)
|
||||
{
|
||||
const struct qcom_ubwc_cfg_data *common_cfg;
|
||||
struct qcom_ubwc_cfg_data *cfg = &gpu->_ubwc_config;
|
||||
|
||||
/* Inherit the common config and make some necessary fixups */
|
||||
common_cfg = qcom_ubwc_config_get_data();
|
||||
if (IS_ERR(common_cfg))
|
||||
return PTR_ERR(common_cfg);
|
||||
|
||||
/* Copy the data into the internal struct to drop the const qualifier (temporarily) */
|
||||
*cfg = *common_cfg;
|
||||
|
||||
/* Use common config as is for A8x */
|
||||
if (!adreno_is_a8xx(gpu)) {
|
||||
cfg->ubwc_swizzle = 0x6;
|
||||
cfg->highest_bank_bit = 15;
|
||||
}
|
||||
|
||||
if (adreno_is_a610(gpu)) {
|
||||
cfg->highest_bank_bit = 13;
|
||||
cfg->ubwc_swizzle = 0x7;
|
||||
}
|
||||
|
||||
if (adreno_is_a612(gpu))
|
||||
cfg->highest_bank_bit = 14;
|
||||
|
||||
if (adreno_is_a618(gpu))
|
||||
cfg->highest_bank_bit = 14;
|
||||
|
||||
if (adreno_is_a619(gpu))
|
||||
/* TODO: Should be 14 but causes corruption at e.g. 1920x1200 on DP */
|
||||
cfg->highest_bank_bit = 13;
|
||||
|
||||
if (adreno_is_a619_holi(gpu))
|
||||
cfg->highest_bank_bit = 13;
|
||||
|
||||
if (adreno_is_a621(gpu))
|
||||
cfg->highest_bank_bit = 13;
|
||||
|
||||
if (adreno_is_a623(gpu))
|
||||
cfg->highest_bank_bit = 16;
|
||||
|
||||
if (adreno_is_a650(gpu) ||
|
||||
adreno_is_a660(gpu) ||
|
||||
adreno_is_a690(gpu) ||
|
||||
adreno_is_a730(gpu) ||
|
||||
adreno_is_a740_family(gpu)) {
|
||||
/* TODO: get ddr type from bootloader and use 15 for LPDDR4 */
|
||||
cfg->highest_bank_bit = 16;
|
||||
}
|
||||
|
||||
if (adreno_is_a663(gpu)) {
|
||||
cfg->highest_bank_bit = 13;
|
||||
cfg->ubwc_swizzle = 0x4;
|
||||
}
|
||||
|
||||
if (adreno_is_7c3(gpu))
|
||||
cfg->highest_bank_bit = 14;
|
||||
|
||||
if (adreno_is_a702(gpu))
|
||||
cfg->highest_bank_bit = 14;
|
||||
|
||||
if (cfg->highest_bank_bit != common_cfg->highest_bank_bit)
|
||||
DRM_WARN_ONCE("Inconclusive highest_bank_bit value: %u (GPU) vs %u (UBWC_CFG)\n",
|
||||
cfg->highest_bank_bit, common_cfg->highest_bank_bit);
|
||||
|
||||
if (cfg->ubwc_swizzle != common_cfg->ubwc_swizzle)
|
||||
DRM_WARN_ONCE("Inconclusive ubwc_swizzle value: %u (GPU) vs %u (UBWC_CFG)\n",
|
||||
cfg->ubwc_swizzle, common_cfg->ubwc_swizzle);
|
||||
|
||||
gpu->ubwc_config = &gpu->_ubwc_config;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void a6xx_set_ubwc_config(struct msm_gpu *gpu)
|
||||
{
|
||||
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
||||
|
|
@ -2700,10 +2624,10 @@ static struct msm_gpu *a6xx_gpu_init(struct drm_device *dev)
|
|||
msm_mmu_set_fault_handler(to_msm_vm(gpu->vm)->mmu, gpu,
|
||||
adreno_gpu->funcs->mmu_fault_handler);
|
||||
|
||||
ret = a6xx_calc_ubwc_config(adreno_gpu);
|
||||
if (ret) {
|
||||
adreno_gpu->ubwc_config = qcom_ubwc_config_get_data();
|
||||
if (IS_ERR(adreno_gpu->ubwc_config)) {
|
||||
a6xx_destroy(&(a6xx_gpu->base.base));
|
||||
return ERR_PTR(ret);
|
||||
return ERR_CAST(adreno_gpu->ubwc_config);
|
||||
}
|
||||
|
||||
/* Set up the preemption specific bits and pieces for each ringbuffer */
|
||||
|
|
|
|||
|
|
@ -236,12 +236,7 @@ struct adreno_gpu {
|
|||
/* firmware: */
|
||||
const struct firmware *fw[ADRENO_FW_MAX];
|
||||
|
||||
/*
|
||||
* The migration to the central UBWC config db is still in flight - keep
|
||||
* a copy containing some local fixups until that's done.
|
||||
*/
|
||||
const struct qcom_ubwc_cfg_data *ubwc_config;
|
||||
struct qcom_ubwc_cfg_data _ubwc_config;
|
||||
|
||||
/*
|
||||
* Register offsets are different between some GPUs.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user