All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: Andrey Grodzovsky <Andrey.Grodzovsky-5C7GfCeVMHo@public.gmane.org>
To: Alex Deucher
	<alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Cc: "David Airlie" <airlied-cv59FeDIM0c@public.gmane.org>,
	"Maling list - DRI developers"
	<dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org>,
	patchwork-lst-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org,
	"amd-gfx list"
	<amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org>,
	"Sascha Hauer" <kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>,
	"Alex Deucher" <alexander.deucher-5C7GfCeVMHo@public.gmane.org>,
	"Christian König" <christian.koenig-5C7GfCeVMHo@public.gmane.org>,
	"Monk Liu" <Monk.Liu-5C7GfCeVMHo@public.gmane.org>
Subject: Re: [PATCH v2 0/2] AMDGPU scheduler move, take 2
Date: Wed, 6 Dec 2017 15:30:47 -0500	[thread overview]
Message-ID: <77121670-d418-c4b9-9959-219fca9dcd48@amd.com> (raw)
In-Reply-To: <CADnq5_PgVy=3B8SONG7R3VivGtw50d7jTta3Kn6m1W9j+eVzkg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

Tested with amdgpu libdrm tests and desktop login with glxgears.

Thanks,

Andrey


On 12/06/2017 02:51 PM, Alex Deucher wrote:
> On Wed, Dec 6, 2017 at 11:49 AM, Lucas Stach <l.stach@pengutronix.de> wrote:
>> Hi all,
>>
>> second try to move the AMDGPU scheduler into a common location, this
>> time rebased onto drm-next-4.16-wip.
>>
>> I've tested my etnaviv series on top of this and things seem to work
>> fine. I checked that AMDGPU still builds, but I don't have any means
>> to actually runtime test this currently, so I would be very happy to
>> receive some tested-bys from the AMD side.
>>
>> Alex, if this looks good please pull this in so it gets your usual
>> testing.
> Series is:
> Acked-by: Alex Deucher <alexander.deucher@amd.com>
>
>> Thanks,
>> Lucas
>>
>> Lucas Stach (2):
>>    drm: move amd_gpu_scheduler into common location
>>    drm/sched: move fence slab handling to module init/exit
>>
>>   drivers/gpu/drm/Kconfig                            |   5 +
>>   drivers/gpu/drm/Makefile                           |   1 +
>>   drivers/gpu/drm/amd/amdgpu/Makefile                |   5 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu.h                |  16 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c             |   6 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c            |  38 +--
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_device.c         |   4 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c            |   8 -
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c          |   4 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_job.c            |  20 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c           |  14 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_ring.h           |  12 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_sched.c          |  20 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_sched.h          |   2 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_sync.c           |   6 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c            |   8 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.h            |   4 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c            |   8 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.h            |   4 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c            |   8 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_vce.h            |   2 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c            |  14 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.h            |   4 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c             |  10 +-
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h             |   7 +-
>>   drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c              |   4 +-
>>   drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c              |   8 +-
>>   drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c              |   8 +-
>>   drivers/gpu/drm/amd/scheduler/gpu_scheduler.h      | 186 -------------
>>   drivers/gpu/drm/scheduler/Makefile                 |   4 +
>>   .../gpu/drm/{amd => }/scheduler/gpu_scheduler.c    | 296 ++++++++++-----------
>>   drivers/gpu/drm/{amd => }/scheduler/sched_fence.c  | 122 +++++----
>>   include/drm/gpu_scheduler.h                        | 173 ++++++++++++
>>   .../drm/gpu_scheduler_trace.h                      |  14 +-
>>   .../drm/amd/scheduler => include/drm}/spsc_queue.h |   7 +-
>>   35 files changed, 529 insertions(+), 523 deletions(-)
>>   delete mode 100644 drivers/gpu/drm/amd/scheduler/gpu_scheduler.h
>>   create mode 100644 drivers/gpu/drm/scheduler/Makefile
>>   rename drivers/gpu/drm/{amd => }/scheduler/gpu_scheduler.c (65%)
>>   rename drivers/gpu/drm/{amd => }/scheduler/sched_fence.c (58%)
>>   create mode 100644 include/drm/gpu_scheduler.h
>>   rename drivers/gpu/drm/amd/scheduler/gpu_sched_trace.h => include/drm/gpu_scheduler_trace.h (82%)
>>   rename {drivers/gpu/drm/amd/scheduler => include/drm}/spsc_queue.h (95%)
>>
>> --
>> 2.11.0
>>
>> _______________________________________________
>> dri-devel mailing list
>> dri-devel@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

  parent reply	other threads:[~2017-12-06 20:30 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-06 16:49 [PATCH v2 0/2] AMDGPU scheduler move, take 2 Lucas Stach
2017-12-06 16:49 ` [PATCH v2 1/2] drm: move amd_gpu_scheduler into common location Lucas Stach
     [not found] ` <20171206164940.15246-1-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2017-12-06 16:49   ` [PATCH v2 2/2] drm/sched: move fence slab handling to module init/exit Lucas Stach
2017-12-06 19:51   ` [PATCH v2 0/2] AMDGPU scheduler move, take 2 Alex Deucher
     [not found]     ` <CADnq5_PgVy=3B8SONG7R3VivGtw50d7jTta3Kn6m1W9j+eVzkg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-12-06 20:30       ` Andrey Grodzovsky [this message]
2017-12-07  2:43   ` Chunming Zhou
2017-12-07  4:06 ` Dieter Nützel

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=77121670-d418-c4b9-9959-219fca9dcd48@amd.com \
    --to=andrey.grodzovsky-5c7gfcevmho@public.gmane.org \
    --cc=Monk.Liu-5C7GfCeVMHo@public.gmane.org \
    --cc=airlied-cv59FeDIM0c@public.gmane.org \
    --cc=alexander.deucher-5C7GfCeVMHo@public.gmane.org \
    --cc=alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    --cc=christian.koenig-5C7GfCeVMHo@public.gmane.org \
    --cc=dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    --cc=kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org \
    --cc=l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org \
    --cc=patchwork-lst-bIcnvbaLZ9MEGnE8C9+IrQ@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.