[PATCH 02/15] drm/i915/dsb: DSB context creation.

Animesh Manna animesh.manna at intel.com
Wed Aug 14 17:26:29 UTC 2019



On 8/14/2019 8:13 PM, Jani Nikula wrote:
> On Wed, 14 Aug 2019, Animesh Manna <animesh.manna at intel.com> wrote:
>> The function will internally get the gem buffer from global GTT
>> which is mapped in cpu domain to feed the data + opcode for DSB engine.
>>
>> Cc: Imre Deak <imre.deak at intel.com>
>> Cc: Michel Thierry <michel.thierry at intel.com>
>> Cc: Jani Nikula <jani.nikula at intel.com>
>> Cc: Rodrigo Vivi <rodrigo.vivi at intel.com>
>> Signed-off-by: Animesh Manna <animesh.manna at intel.com>
>> ---
>>   drivers/gpu/drm/i915/Makefile                 |  1 +
>>   .../drm/i915/display/intel_display_types.h    |  4 ++
>>   drivers/gpu/drm/i915/display/intel_dsb.c      | 66 +++++++++++++++++++
>>   drivers/gpu/drm/i915/display/intel_dsb.h      | 31 +++++++++
>>   drivers/gpu/drm/i915/i915_drv.h               |  1 +
>>   5 files changed, 103 insertions(+)
>>   create mode 100644 drivers/gpu/drm/i915/display/intel_dsb.c
>>   create mode 100644 drivers/gpu/drm/i915/display/intel_dsb.h
>>
>> diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
>> index d3ca46dc54ae..06458834fba7 100644
>> --- a/drivers/gpu/drm/i915/Makefile
>> +++ b/drivers/gpu/drm/i915/Makefile
>> @@ -50,6 +50,7 @@ i915-y += i915_drv.o \
>>   	  i915_utils.o \
>>   	  intel_csr.o \
>>   	  intel_device_info.o \
>> +	  intel_dsb.o \
> How does it work to put intel_dsb.[ch] under display/ but list it in the
> Makefile as though it's part of core driver code at the i915/ top level?

Yes, have missed and local build also could not catch as maybe object 
files were present in that directory.
Fixed the issue and latest trybot link - 
https://patchwork.freedesktop.org/series/65161/

Regards,
Animesh

>
> BR,
> Jani.
>
>
>
>>   	  intel_pch.o \
>>   	  intel_pm.o \
>>   	  intel_runtime_pm.o \
>> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
>> index a88ec9aa9ca0..56e91f04c9b2 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
>> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
>> @@ -1025,6 +1025,10 @@ struct intel_crtc {
>>   
>>   	/* scalers available on this crtc */
>>   	int num_scalers;
>> +
>> +	/* per pipe DSB related info */
>> +	struct intel_dsb dsb[MAX_DSB_PER_PIPE];
>> +	int dsb_in_use;
>>   };
>>   
>>   struct intel_plane {
>> diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c b/drivers/gpu/drm/i915/display/intel_dsb.c
>> new file mode 100644
>> index 000000000000..6cde3af30643
>> --- /dev/null
>> +++ b/drivers/gpu/drm/i915/display/intel_dsb.c
>> @@ -0,0 +1,66 @@
>> +// SPDX-License-Identifier: MIT
>> +/*
>> + * Copyright © 2019 Intel Corporation
>> + *
>> + */
>> +
>> +#include "../i915_drv.h"
>> +#include "intel_display_types.h"
>> +
>> +#define DSB_BUF_SIZE    (2 * PAGE_SIZE)
>> +
>> +struct intel_dsb *
>> +intel_dsb_get(struct intel_crtc *crtc)
>> +{
>> +	struct drm_device *dev = crtc->base.dev;
>> +	struct drm_i915_private *i915 = to_i915(dev);
>> +	struct drm_i915_gem_object *obj;
>> +	struct i915_vma *vma;
>> +	struct intel_dsb *dsb;
>> +	intel_wakeref_t wakeref;
>> +	int i;
>> +
>> +	WARN_ON(crtc->dsb_in_use >= MAX_DSB_PER_PIPE);
>> +
>> +	for (i = 0; i < MAX_DSB_PER_PIPE; i++) {
>> +		if (!crtc->dsb[i].cmd_buf) {
>> +			dsb = &crtc->dsb[i];
>> +			dsb->id = i;
>> +		}
>> +	}
>> +
>> +	dsb = &crtc->dsb[crtc->dsb_in_use];
>> +	dsb->crtc = crtc;
>> +	if (!HAS_DSB(i915))
>> +		return dsb;
>> +
>> +	wakeref = intel_runtime_pm_get(&i915->runtime_pm);
>> +	mutex_lock(&i915->drm.struct_mutex);
>> +
>> +	obj = i915_gem_object_create_shmem(i915, DSB_BUF_SIZE);
>> +	if (IS_ERR(obj))
>> +		goto err;
>> +
>> +	vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, PIN_MAPPABLE);
>> +	if (IS_ERR(vma)) {
>> +		DRM_DEBUG_KMS("Vma creation failed.\n");
>> +		i915_gem_object_put(obj);
>> +		goto err;
>> +	}
>> +
>> +	dsb->cmd_buf = i915_gem_object_pin_map(vma->obj, I915_MAP_WC);
>> +	if (IS_ERR(dsb->cmd_buf)) {
>> +		DRM_DEBUG_KMS("Command buffer creation failed.\n");
>> +		dsb->cmd_buf = NULL;
>> +		goto err;
>> +	}
>> +	crtc->dsb_in_use++;
>> +	dsb->cmd_buf_head = (uintptr_t)i915_ggtt_offset(vma);
>> +	dsb->vma = vma;
>> +
>> +	memset(dsb->cmd_buf, 0, DSB_BUF_SIZE);
>> +err:
>> +	mutex_unlock(&i915->drm.struct_mutex);
>> +	intel_runtime_pm_put(&i915->runtime_pm, wakeref);
>> +	return dsb;
>> +}
>> diff --git a/drivers/gpu/drm/i915/display/intel_dsb.h b/drivers/gpu/drm/i915/display/intel_dsb.h
>> new file mode 100644
>> index 000000000000..50a2a6590a71
>> --- /dev/null
>> +++ b/drivers/gpu/drm/i915/display/intel_dsb.h
>> @@ -0,0 +1,31 @@
>> +/* SPDX-License-Identifier: MIT
>> + *
>> + * Copyright © 2019 Intel Corporation
>> + */
>> +
>> +#ifndef _INTEL_DSB_H
>> +#define _INTEL_DSB_H
>> +
>> +struct intel_crtc;
>> +struct i915_vma;
>> +
>> +enum dsb_id {
>> +	INVALID_DSB = -1,
>> +	DSB1,
>> +	DSB2,
>> +	DSB3,
>> +	MAX_DSB_PER_PIPE
>> +};
>> +
>> +struct intel_dsb {
>> +	struct intel_crtc *crtc;
>> +	enum dsb_id id;
>> +	u32 *cmd_buf;
>> +	u32 cmd_buf_head;
>> +	struct i915_vma *vma;
>> +};
>> +
>> +struct intel_dsb *
>> +intel_dsb_get(struct intel_crtc *crtc);
>> +
>> +#endif
>> diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
>> index 29cb320fccf2..9bd4127a3530 100644
>> --- a/drivers/gpu/drm/i915/i915_drv.h
>> +++ b/drivers/gpu/drm/i915/i915_drv.h
>> @@ -67,6 +67,7 @@
>>   #include "display/intel_display.h"
>>   #include "display/intel_display_power.h"
>>   #include "display/intel_dpll_mgr.h"
>> +#include "display/intel_dsb.h"
>>   #include "display/intel_frontbuffer.h"
>>   #include "display/intel_opregion.h"



More information about the Intel-gfx-trybot mailing list