From: Thierry Reding <thierry.reding@gmail.com>
To: Mikko Perttunen <mperttunen@nvidia.com>
Cc: linux-tegra@vger.kernel.org, digetx@gmail.com,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
jonathanh@nvidia.com
Subject: Re: [PATCH v3 0/6] Miscellaneous improvements to Host1x and TegraDRM
Date: Thu, 19 Oct 2017 14:00:06 +0200 [thread overview]
Message-ID: <20171019120006.GR9005@ulmo> (raw)
In-Reply-To: <20170928125044.32516-1-mperttunen@nvidia.com>
[-- Attachment #1.1: Type: text/plain, Size: 2606 bytes --]
On Thu, Sep 28, 2017 at 03:50:38PM +0300, Mikko Perttunen wrote:
> New in v3:
> - Renamed *syncpt_assign_channel to *syncpt_assign_to_channel
> - Disassembler ignores opcodes not supported on the particular
> chip
> - Further cleanup in u64_to_user_ptr patch
>
> New in v2:
> - Changes in syncpoint protection and u64_to_user_ptr patches.
> See the patches for notes.
> - Added patch to support more opcodes in the debug dump
> disassembly.
> - Added patch to fix an incorrect comment.
>
> Thanks,
> Mikko
>
> Patch v1 notes:
>
> Hi all,
>
> here are some new features and improvements.
>
> Patch 1 enables syncpoint protection which prevents channels from
> touching syncpoints not belonging to them on Tegra186.
>
> Patch 2 enables the gather filter which prevents userspace command
> buffers from using CDMA commands usually reserved for the kernel.
> A test is available at git://github.com/cyndis/host1x_test, branch
> gather-filter.
>
> Patch 3 greatly improves formatting of debug dumps spewed by host1x
> in case of job timeouts. They are now actually readable by humans
> without use of additional scripts.
>
> Patch 4 is a simple aesthetical fix to the TegraDRM submit path.
>
> Everything was tested on TX1 and TX2 and should be applied on the
> previously posted Tegra186 support series.
>
> Cheers,
> Mikko
>
>
> Mikko Perttunen (6):
> gpu: host1x: Enable Tegra186 syncpoint protection
> gpu: host1x: Enable gather filter
> gpu: host1x: Improve debug disassembly formatting
> gpu: host1x: Disassemble more instructions
> gpu: host1x: Fix incorrect comment for channel_request
> drm/tegra: Use u64_to_user_ptr helper
>
> drivers/gpu/drm/tegra/drm.c | 29 ++++----
> drivers/gpu/host1x/channel.c | 3 +-
> drivers/gpu/host1x/debug.c | 14 +++-
> drivers/gpu/host1x/debug.h | 14 ++--
> drivers/gpu/host1x/dev.h | 15 ++++
> drivers/gpu/host1x/hw/channel_hw.c | 25 +++++++
> drivers/gpu/host1x/hw/debug_hw.c | 103 ++++++++++++++++++++++------
> drivers/gpu/host1x/hw/debug_hw_1x01.c | 10 +--
> drivers/gpu/host1x/hw/debug_hw_1x06.c | 12 ++--
> drivers/gpu/host1x/hw/hw_host1x04_channel.h | 12 ++++
> drivers/gpu/host1x/hw/hw_host1x05_channel.h | 12 ++++
> drivers/gpu/host1x/hw/syncpt_hw.c | 46 +++++++++++++
> drivers/gpu/host1x/syncpt.c | 8 +++
> 13 files changed, 252 insertions(+), 51 deletions(-)
Applied, thanks.
Thierry
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 160 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
WARNING: multiple messages have this Message-ID (diff)
From: Thierry Reding <thierry.reding@gmail.com>
To: Mikko Perttunen <mperttunen@nvidia.com>
Cc: jonathanh@nvidia.com, digetx@gmail.com,
dri-devel@lists.freedesktop.org, linux-tegra@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 0/6] Miscellaneous improvements to Host1x and TegraDRM
Date: Thu, 19 Oct 2017 14:00:06 +0200 [thread overview]
Message-ID: <20171019120006.GR9005@ulmo> (raw)
In-Reply-To: <20170928125044.32516-1-mperttunen@nvidia.com>
[-- Attachment #1: Type: text/plain, Size: 2606 bytes --]
On Thu, Sep 28, 2017 at 03:50:38PM +0300, Mikko Perttunen wrote:
> New in v3:
> - Renamed *syncpt_assign_channel to *syncpt_assign_to_channel
> - Disassembler ignores opcodes not supported on the particular
> chip
> - Further cleanup in u64_to_user_ptr patch
>
> New in v2:
> - Changes in syncpoint protection and u64_to_user_ptr patches.
> See the patches for notes.
> - Added patch to support more opcodes in the debug dump
> disassembly.
> - Added patch to fix an incorrect comment.
>
> Thanks,
> Mikko
>
> Patch v1 notes:
>
> Hi all,
>
> here are some new features and improvements.
>
> Patch 1 enables syncpoint protection which prevents channels from
> touching syncpoints not belonging to them on Tegra186.
>
> Patch 2 enables the gather filter which prevents userspace command
> buffers from using CDMA commands usually reserved for the kernel.
> A test is available at git://github.com/cyndis/host1x_test, branch
> gather-filter.
>
> Patch 3 greatly improves formatting of debug dumps spewed by host1x
> in case of job timeouts. They are now actually readable by humans
> without use of additional scripts.
>
> Patch 4 is a simple aesthetical fix to the TegraDRM submit path.
>
> Everything was tested on TX1 and TX2 and should be applied on the
> previously posted Tegra186 support series.
>
> Cheers,
> Mikko
>
>
> Mikko Perttunen (6):
> gpu: host1x: Enable Tegra186 syncpoint protection
> gpu: host1x: Enable gather filter
> gpu: host1x: Improve debug disassembly formatting
> gpu: host1x: Disassemble more instructions
> gpu: host1x: Fix incorrect comment for channel_request
> drm/tegra: Use u64_to_user_ptr helper
>
> drivers/gpu/drm/tegra/drm.c | 29 ++++----
> drivers/gpu/host1x/channel.c | 3 +-
> drivers/gpu/host1x/debug.c | 14 +++-
> drivers/gpu/host1x/debug.h | 14 ++--
> drivers/gpu/host1x/dev.h | 15 ++++
> drivers/gpu/host1x/hw/channel_hw.c | 25 +++++++
> drivers/gpu/host1x/hw/debug_hw.c | 103 ++++++++++++++++++++++------
> drivers/gpu/host1x/hw/debug_hw_1x01.c | 10 +--
> drivers/gpu/host1x/hw/debug_hw_1x06.c | 12 ++--
> drivers/gpu/host1x/hw/hw_host1x04_channel.h | 12 ++++
> drivers/gpu/host1x/hw/hw_host1x05_channel.h | 12 ++++
> drivers/gpu/host1x/hw/syncpt_hw.c | 46 +++++++++++++
> drivers/gpu/host1x/syncpt.c | 8 +++
> 13 files changed, 252 insertions(+), 51 deletions(-)
Applied, thanks.
Thierry
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2017-10-19 12:00 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-28 12:50 [PATCH v3 0/6] Miscellaneous improvements to Host1x and TegraDRM Mikko Perttunen
2017-09-28 12:50 ` Mikko Perttunen
2017-09-28 12:50 ` [PATCH v3 1/6] gpu: host1x: Enable Tegra186 syncpoint protection Mikko Perttunen
2017-09-28 12:50 ` Mikko Perttunen
[not found] ` <20170928125044.32516-2-mperttunen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2017-09-30 2:41 ` Dmitry Osipenko
2017-09-30 2:41 ` Dmitry Osipenko
[not found] ` <8391dc88-36a1-0b3c-9ffa-42ce0238dc3f-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-09-30 7:01 ` Mikko Perttunen
2017-09-30 7:01 ` Mikko Perttunen
2017-10-19 12:49 ` Thierry Reding
2017-10-19 12:49 ` Thierry Reding
2017-09-28 12:50 ` [PATCH v3 2/6] gpu: host1x: Enable gather filter Mikko Perttunen
2017-09-28 12:50 ` Mikko Perttunen
2017-09-28 12:50 ` [PATCH v3 3/6] gpu: host1x: Improve debug disassembly formatting Mikko Perttunen
2017-09-28 12:50 ` Mikko Perttunen
2017-09-28 13:29 ` Joe Perches
2017-09-28 12:50 ` [PATCH v3 4/6] gpu: host1x: Disassemble more instructions Mikko Perttunen
2017-09-28 12:50 ` Mikko Perttunen
[not found] ` <20170928125044.32516-5-mperttunen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2017-09-30 2:44 ` Dmitry Osipenko
2017-09-30 2:44 ` Dmitry Osipenko
2017-09-28 12:50 ` [PATCH v3 5/6] gpu: host1x: Fix incorrect comment for channel_request Mikko Perttunen
2017-09-28 12:50 ` Mikko Perttunen
[not found] ` <20170928125044.32516-1-mperttunen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2017-09-28 12:50 ` [PATCH v3 6/6] drm/tegra: Use u64_to_user_ptr helper Mikko Perttunen
2017-09-28 12:50 ` Mikko Perttunen
[not found] ` <20170928125044.32516-7-mperttunen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2017-09-30 2:44 ` Dmitry Osipenko
2017-09-30 2:44 ` Dmitry Osipenko
2017-10-19 12:00 ` Thierry Reding [this message]
2017-10-19 12:00 ` [PATCH v3 0/6] Miscellaneous improvements to Host1x and TegraDRM Thierry Reding
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=20171019120006.GR9005@ulmo \
--to=thierry.reding@gmail.com \
--cc=digetx@gmail.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=jonathanh@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=mperttunen@nvidia.com \
/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.