All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Christian König" <deathsimple-ANTagKRnAhcb1SvskN2V4Q@public.gmane.org>
To: "Zhang, Jerry" <Jerry.Zhang-5C7GfCeVMHo@public.gmane.org>,
	"amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org"
	<amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org>
Subject: Re: [PATCH 1/1] drm/amdgpu: export gfx capability by gpu info
Date: Thu, 16 Feb 2017 10:36:36 +0100	[thread overview]
Message-ID: <ea0dbd80-8ebf-908f-3d7f-78501b06fc53@vodafone.de> (raw)
In-Reply-To: <BN6PR12MB18098E6B408580D7847D84EBFF5A0-/b2+HYfkarSEx6ez0IUAagdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>

Am 16.02.2017 um 10:24 schrieb Zhang, Jerry:
>> -----Original Message-----
>> From: Christian König [mailto:deathsimple@vodafone.de]
>> Sent: Thursday, February 16, 2017 17:12
>> To: Zhang, Jerry; amd-gfx@lists.freedesktop.org
>> Subject: Re: [PATCH 1/1] drm/amdgpu: export gfx capability by gpu info
>>
>> Am 16.02.2017 um 03:53 schrieb Junwei Zhang:
>>> Change-Id: Ibf3e4dbb7deb83271adabc275c9b7a0e0652541a
>>> Signed-off-by: Junwei Zhang <Jerry.Zhang@amd.com>
>> Complete NAK on this. The drm_amdgpu_capability structure is specific to the
>> pro driver.
> Thanks to reminder it.
> I neglect it.
>   
>> The Vulkan stack on the other hand is supposed to work on the open stack as
>> well.
>>
>> So please but that into the drm_amdgpu_info_device structure and the new field
>> in the amdgpu_gca_config structure (you might as well want to rename the
>> amdgpu_gca_config structure).
> So you mean add the feature or config structure in amdgpu_device directly from now on.
> Right?

No, just forget about the config or feature structure. Add gfx features 
to amdgpu_gca_config.

> Could you explain the meaning about gca?

I just think that the naming isn't the best, something like 
amdgpu_gfx_config would probably be better.

>
> BTW,
> 1) in the future we may add more feature/config in the same structure, but may not for gfx.

Stop, that is really bad design. The features/config should be kept on a 
per IP basis.

So gfx config/features should only be grouped together with gfx 
features. Don't mix features from different block inside the kernel module.

The IOCTL interface is a different story, here we have the 
drm_amdgpu_info_device structure for information about the whole GPU as 
well as individual structures about each IP block (like firmware 
versions etc...).

For the current case adding that to drm_amdgpu_info_device sounds like 
the right approach to me.

> 2) Shall we add a version to control these features? UMD could know the features status according to the version.

No, the size of the drm_amdgpu_info_device structure is already version 
controlled.

Just make sure that the default value is zero, this way you keep 
backward compatible with older kernel interfaces.

Regards,
Christian.

>
>> Regards,
>> Christian.
>>
>>> ---
>>>    drivers/gpu/drm/amd/amdgpu/amdgpu.h     |  6 ++++++
>>>    drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c |  2 ++
>>>    drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c   |  6 ++++++
>>>    drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c   |  6 ++++++
>>>    drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c   | 14 ++++++++++++++
>>>    include/uapi/drm/amdgpu_drm.h           |  1 +
>>>    6 files changed, 35 insertions(+)
>>>
>>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
>>> b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
>>> index 1ad3f08..cdc2b2a 100644
>>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
>>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
>>> @@ -869,6 +869,10 @@ struct amdgpu_gfx_funcs {
>>>    	void (*read_wave_sgprs)(struct amdgpu_device *adev, uint32_t simd,
>> uint32_t wave, uint32_t start, uint32_t size, uint32_t *dst);
>>>    };
>>>
>>> +struct amdgpu_gfx_cap {
>>> +	uint32_t gc_double_offchip_lds_buf;
>>> +};
>>> +
>>>    struct amdgpu_gfx {
>>>    	struct mutex			gpu_clock_mutex;
>>>    	struct amdgpu_gca_config	config;
>>> @@ -911,6 +915,8 @@ struct amdgpu_gfx {
>>>    	/* reset mask */
>>>    	uint32_t                        grbm_soft_reset;
>>>    	uint32_t                        srbm_soft_reset;
>>> +
>>> +	struct amdgpu_gfx_cap		cap;
>>>    };
>>>
>>>    int amdgpu_ib_get(struct amdgpu_device *adev, struct amdgpu_vm *vm,
>>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
>>> b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
>>> index 7f59608..e7aa382 100644
>>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
>>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
>>> @@ -618,6 +618,8 @@ static int amdgpu_info_ioctl(struct drm_device *dev,
>> void *data, struct drm_file
>>>    			cap.flag |= AMDGPU_CAPABILITY_DIRECT_GMA_FLAG;
>>>    			cap.direct_gma_size = amdgpu_direct_gma_size;
>>>    		}
>>> +		cap.gc_double_offchip_lds_buf =
>>> +			adev->gfx.cap.gc_double_offchip_lds_buf;
>>>    		return copy_to_user(out, &cap,
>>>    				    min((size_t)size, sizeof(cap))) ? -EFAULT : 0;
>>>    	}
>>> diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
>>> b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
>>> index ce75d46..a1e221b 100644
>>> --- a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
>>> +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
>>> @@ -1534,6 +1534,11 @@ static void gfx_v6_0_setup_spi(struct
>> amdgpu_device *adev,
>>>    	mutex_unlock(&adev->grbm_idx_mutex);
>>>    }
>>>
>>> +static void gfx_v6_0_cap_init(struct amdgpu_device *adev) {
>>> +	adev->gfx.cap.gc_double_offchip_lds_buf = 1; }
>>> +
>>>    static void gfx_v6_0_gpu_init(struct amdgpu_device *adev)
>>>    {
>>>    	u32 gb_addr_config = 0;
>>> @@ -1692,6 +1697,7 @@ static void gfx_v6_0_gpu_init(struct amdgpu_device
>> *adev)
>>>    		     adev->gfx.config.max_cu_per_sh);
>>>
>>>    	gfx_v6_0_get_cu_info(adev);
>>> +	gfx_v6_0_cap_init(adev);
>>>
>>>    	WREG32(mmCP_QUEUE_THRESHOLDS, ((0x16 <<
>> CP_QUEUE_THRESHOLDS__ROQ_IB1_START__SHIFT) |
>>>    				       (0x2b <<
>> CP_QUEUE_THRESHOLDS__ROQ_IB2_START__SHIFT)));
>>> diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c
>>> b/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c
>>> index aaf66fe..e1e97ae 100644
>>> --- a/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c
>>> +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c
>>> @@ -1876,6 +1876,11 @@ static void gmc_v7_0_init_compute_vmid(struct
>> amdgpu_device *adev)
>>>    	mutex_unlock(&adev->srbm_mutex);
>>>    }
>>>
>>> +static void gfx_v7_0_cap_init(struct amdgpu_device *adev) {
>>> +	adev->gfx.cap.gc_double_offchip_lds_buf = 1; }
>>> +
>>>    /**
>>>     * gfx_v7_0_gpu_init - setup the 3D engine
>>>     *
>>> @@ -1900,6 +1905,7 @@ static void gfx_v7_0_gpu_init(struct
>>> amdgpu_device *adev)
>>>
>>>    	gfx_v7_0_setup_rb(adev);
>>>    	gfx_v7_0_get_cu_info(adev);
>>> +	gfx_v7_0_cap_init(adev);
>>>
>>>    	/* set HW defaults for 3D engine */
>>>    	WREG32(mmCP_MEQ_THRESHOLDS,
>>> diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
>>> b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
>>> index ce05e38..934fc71 100644
>>> --- a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
>>> +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
>>> @@ -3826,6 +3826,19 @@ static void gfx_v8_0_init_compute_vmid(struct
>> amdgpu_device *adev)
>>>    	mutex_unlock(&adev->srbm_mutex);
>>>    }
>>>
>>> +static void gfx_v8_0_cap_init(struct amdgpu_device *adev) {
>>> +	switch (adev->asic_type) {
>>> +	default:
>>> +		adev->gfx.cap.gc_double_offchip_lds_buf = 1;
>>> +		break;
>>> +	case CHIP_CARRIZO:
>>> +	case CHIP_STONEY:
>>> +		adev->gfx.cap.gc_double_offchip_lds_buf = 0;
>>> +		break;
>>> +	}
>>> +}
>>> +
>>>    static void gfx_v8_0_gpu_init(struct amdgpu_device *adev)
>>>    {
>>>    	u32 tmp, sh_static_mem_cfg;
>>> @@ -3839,6 +3852,7 @@ static void gfx_v8_0_gpu_init(struct amdgpu_device
>> *adev)
>>>    	gfx_v8_0_tiling_mode_table_init(adev);
>>>    	gfx_v8_0_setup_rb(adev);
>>>    	gfx_v8_0_get_cu_info(adev);
>>> +	gfx_v8_0_cap_init(adev);
>>>
>>>    	/* XXX SH_MEM regs */
>>>    	/* where to put LDS, scratch, GPUVM in FSA64 space */ diff --git
>>> a/include/uapi/drm/amdgpu_drm.h b/include/uapi/drm/amdgpu_drm.h index
>>> 04daab3..7064fdc 100644
>>> --- a/include/uapi/drm/amdgpu_drm.h
>>> +++ b/include/uapi/drm/amdgpu_drm.h
>>> @@ -853,6 +853,7 @@ struct drm_amdgpu_virtual_range {
>>>    struct drm_amdgpu_capability {
>>>    	__u32 flag;
>>>    	__u32 direct_gma_size;
>>> +	__u32 gc_double_offchip_lds_buf;
>>>    };
>>>
>>>    /*
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx


_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

  parent reply	other threads:[~2017-02-16  9:36 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-16  2:53 add gfx capability by gpu info Junwei Zhang
     [not found] ` <1487213588-26299-1-git-send-email-Jerry.Zhang-5C7GfCeVMHo@public.gmane.org>
2017-02-16  2:53   ` [PATCH 1/1] drm/amdgpu: export " Junwei Zhang
     [not found]     ` <1487213588-26299-2-git-send-email-Jerry.Zhang-5C7GfCeVMHo@public.gmane.org>
2017-02-16  4:37       ` Edward O'Callaghan
     [not found]         ` <2ee3024b-cd44-9fd6-62f7-fb8117dd2e74-dczkZgxz+BNUPWh3PAxdjQ@public.gmane.org>
2017-02-16  5:46           ` Zhang, Jerry
     [not found]             ` <BN6PR12MB1809B9E0ECE9A87C21C92A41FF5A0-/b2+HYfkarSEx6ez0IUAagdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2017-02-16  7:17               ` Edward O'Callaghan
2017-02-16  9:11       ` Christian König
     [not found]         ` <2bae755f-f1e2-57de-257c-e1d155723122-ANTagKRnAhcb1SvskN2V4Q@public.gmane.org>
2017-02-16  9:24           ` Zhang, Jerry
     [not found]             ` <BN6PR12MB18098E6B408580D7847D84EBFF5A0-/b2+HYfkarSEx6ez0IUAagdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2017-02-16  9:36               ` Christian König [this message]
     [not found]                 ` <ea0dbd80-8ebf-908f-3d7f-78501b06fc53-ANTagKRnAhcb1SvskN2V4Q@public.gmane.org>
2017-02-17  5:02                   ` Zhang, Jerry
     [not found]                     ` <BN6PR12MB180905873C26301AFC42915DFF5D0-/b2+HYfkarSEx6ez0IUAagdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2017-02-17 10:21                       ` Christian König

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ea0dbd80-8ebf-908f-3d7f-78501b06fc53@vodafone.de \
    --to=deathsimple-antagkrnahcb1svskn2v4q@public.gmane.org \
    --cc=Jerry.Zhang-5C7GfCeVMHo@public.gmane.org \
    --cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.