]> Git Repo - linux.git/commitdiff
Merge tag 'drm-msm-fixes-2020-06-25' of https://gitlab.freedesktop.org/drm/msm into...
authorDave Airlie <[email protected]>
Wed, 1 Jul 2020 05:01:29 +0000 (15:01 +1000)
committerDave Airlie <[email protected]>
Wed, 1 Jul 2020 05:01:51 +0000 (15:01 +1000)
A few fixes, mostly fallout from the address space refactor and dpu
color processing.

Signed-off-by: Dave Airlie <[email protected]>
From: Rob Clark <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/
1  2 
drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.c

index 19ec48695ffb4f4529552f1dd4e49c14cb6f770a,8586d2cf1d9445ed1c199c01a18432eaabc2a595..e193865ce9a26e557ee158651d5b9ae342b980bf
@@@ -259,9 -259,17 +259,9 @@@ static struct drm_info_list mdp5_debugf
  
  static int mdp5_kms_debugfs_init(struct msm_kms *kms, struct drm_minor *minor)
  {
 -      struct drm_device *dev = minor->dev;
 -      int ret;
 -
 -      ret = drm_debugfs_create_files(mdp5_debugfs_list,
 -                      ARRAY_SIZE(mdp5_debugfs_list),
 -                      minor->debugfs_root, minor);
 -
 -      if (ret) {
 -              DRM_DEV_ERROR(dev->dev, "could not install mdp5_debugfs_list\n");
 -              return ret;
 -      }
 +      drm_debugfs_create_files(mdp5_debugfs_list,
 +                               ARRAY_SIZE(mdp5_debugfs_list),
 +                               minor->debugfs_root, minor);
  
        return 0;
  }
@@@ -633,7 -641,7 +633,7 @@@ struct msm_kms *mdp5_kms_init(struct dr
                mmu = msm_iommu_new(iommu_dev, config->platform.iommu);
  
                aspace = msm_gem_address_space_create(mmu, "mdp5",
-                       0x1000, 0xffffffff);
+                       0x1000, 0x100000000 - 0x1000);
  
                if (IS_ERR(aspace)) {
                        if (!IS_ERR(mmu))
This page took 0.06517 seconds and 4 git commands to generate.