All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thierry Reding <thierry.reding@gmail.com>
To: Mikko Perttunen <mperttunen@nvidia.com>
Cc: mark.rutland@arm.com, devicetree@vger.kernel.org,
	dnibade@nvidia.com, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org, jonathanh@nvidia.com,
	sgurrappadi@nvidia.com, robh+dt@kernel.org,
	linux-tegra@vger.kernel.org, digetx@gmail.com,
	amerilainen@nvidia.com, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 5/6] gpu: host1x: Add Tegra186 support
Date: Thu, 19 Oct 2017 13:39:45 +0200	[thread overview]
Message-ID: <20171019113945.GP9005@ulmo> (raw)
In-Reply-To: <20170905084306.19318-6-mperttunen@nvidia.com>


[-- Attachment #1.1: Type: text/plain, Size: 2338 bytes --]

On Tue, Sep 05, 2017 at 11:43:05AM +0300, Mikko Perttunen wrote:
> Add support for the implementation of Host1x present on the Tegra186.
> The register space has been shuffled around a little bit, requiring
> addition of some chip-specific code sections. Tegra186 also adds
> several new features, most importantly the hypervisor, but those are
> not yet supported with this commit.
> 
> Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
> Reviewed-by: Dmitry Osipenko <digetx@gmail.com>
> Tested-by: Dmitry Osipenko <digetx@gmail.com>
> ---
>  drivers/gpu/host1x/Makefile                    |   3 +-
>  drivers/gpu/host1x/dev.c                       |  60 +++++++-
>  drivers/gpu/host1x/dev.h                       |   4 +
>  drivers/gpu/host1x/hw/cdma_hw.c                |  49 ++++---
>  drivers/gpu/host1x/hw/debug_hw.c               | 137 +------------------
>  drivers/gpu/host1x/hw/debug_hw_1x01.c          | 154 +++++++++++++++++++++
>  drivers/gpu/host1x/hw/debug_hw_1x06.c          | 133 ++++++++++++++++++
>  drivers/gpu/host1x/hw/host1x01.c               |   2 +
>  drivers/gpu/host1x/hw/host1x02.c               |   2 +
>  drivers/gpu/host1x/hw/host1x04.c               |   2 +
>  drivers/gpu/host1x/hw/host1x05.c               |   2 +
>  drivers/gpu/host1x/hw/host1x06.c               |  44 ++++++
>  drivers/gpu/host1x/hw/host1x06.h               |  26 ++++
>  drivers/gpu/host1x/hw/host1x06_hardware.h      | 142 +++++++++++++++++++
>  drivers/gpu/host1x/hw/hw_host1x06_hypervisor.h |  32 +++++
>  drivers/gpu/host1x/hw/hw_host1x06_uclass.h     | 181 +++++++++++++++++++++++++
>  drivers/gpu/host1x/hw/hw_host1x06_vm.h         |  47 +++++++
>  drivers/gpu/host1x/hw/intr_hw.c                |  29 ++--
>  18 files changed, 880 insertions(+), 169 deletions(-)
>  create mode 100644 drivers/gpu/host1x/hw/debug_hw_1x01.c
>  create mode 100644 drivers/gpu/host1x/hw/debug_hw_1x06.c
>  create mode 100644 drivers/gpu/host1x/hw/host1x06.c
>  create mode 100644 drivers/gpu/host1x/hw/host1x06.h
>  create mode 100644 drivers/gpu/host1x/hw/host1x06_hardware.h
>  create mode 100644 drivers/gpu/host1x/hw/hw_host1x06_hypervisor.h
>  create mode 100644 drivers/gpu/host1x/hw/hw_host1x06_uclass.h
>  create mode 100644 drivers/gpu/host1x/hw/hw_host1x06_vm.h

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@gmail.com (Thierry Reding)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 5/6] gpu: host1x: Add Tegra186 support
Date: Thu, 19 Oct 2017 13:39:45 +0200	[thread overview]
Message-ID: <20171019113945.GP9005@ulmo> (raw)
In-Reply-To: <20170905084306.19318-6-mperttunen@nvidia.com>

On Tue, Sep 05, 2017 at 11:43:05AM +0300, Mikko Perttunen wrote:
> Add support for the implementation of Host1x present on the Tegra186.
> The register space has been shuffled around a little bit, requiring
> addition of some chip-specific code sections. Tegra186 also adds
> several new features, most importantly the hypervisor, but those are
> not yet supported with this commit.
> 
> Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
> Reviewed-by: Dmitry Osipenko <digetx@gmail.com>
> Tested-by: Dmitry Osipenko <digetx@gmail.com>
> ---
>  drivers/gpu/host1x/Makefile                    |   3 +-
>  drivers/gpu/host1x/dev.c                       |  60 +++++++-
>  drivers/gpu/host1x/dev.h                       |   4 +
>  drivers/gpu/host1x/hw/cdma_hw.c                |  49 ++++---
>  drivers/gpu/host1x/hw/debug_hw.c               | 137 +------------------
>  drivers/gpu/host1x/hw/debug_hw_1x01.c          | 154 +++++++++++++++++++++
>  drivers/gpu/host1x/hw/debug_hw_1x06.c          | 133 ++++++++++++++++++
>  drivers/gpu/host1x/hw/host1x01.c               |   2 +
>  drivers/gpu/host1x/hw/host1x02.c               |   2 +
>  drivers/gpu/host1x/hw/host1x04.c               |   2 +
>  drivers/gpu/host1x/hw/host1x05.c               |   2 +
>  drivers/gpu/host1x/hw/host1x06.c               |  44 ++++++
>  drivers/gpu/host1x/hw/host1x06.h               |  26 ++++
>  drivers/gpu/host1x/hw/host1x06_hardware.h      | 142 +++++++++++++++++++
>  drivers/gpu/host1x/hw/hw_host1x06_hypervisor.h |  32 +++++
>  drivers/gpu/host1x/hw/hw_host1x06_uclass.h     | 181 +++++++++++++++++++++++++
>  drivers/gpu/host1x/hw/hw_host1x06_vm.h         |  47 +++++++
>  drivers/gpu/host1x/hw/intr_hw.c                |  29 ++--
>  18 files changed, 880 insertions(+), 169 deletions(-)
>  create mode 100644 drivers/gpu/host1x/hw/debug_hw_1x01.c
>  create mode 100644 drivers/gpu/host1x/hw/debug_hw_1x06.c
>  create mode 100644 drivers/gpu/host1x/hw/host1x06.c
>  create mode 100644 drivers/gpu/host1x/hw/host1x06.h
>  create mode 100644 drivers/gpu/host1x/hw/host1x06_hardware.h
>  create mode 100644 drivers/gpu/host1x/hw/hw_host1x06_hypervisor.h
>  create mode 100644 drivers/gpu/host1x/hw/hw_host1x06_uclass.h
>  create mode 100644 drivers/gpu/host1x/hw/hw_host1x06_vm.h

Applied, thanks.

Thierry
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20171019/98939d90/attachment.sig>

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, robh+dt@kernel.org, mark.rutland@arm.com,
	digetx@gmail.com, amerilainen@nvidia.com, dnibade@nvidia.com,
	sgurrappadi@nvidia.com, dri-devel@lists.freedesktop.org,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 5/6] gpu: host1x: Add Tegra186 support
Date: Thu, 19 Oct 2017 13:39:45 +0200	[thread overview]
Message-ID: <20171019113945.GP9005@ulmo> (raw)
In-Reply-To: <20170905084306.19318-6-mperttunen@nvidia.com>

[-- Attachment #1: Type: text/plain, Size: 2338 bytes --]

On Tue, Sep 05, 2017 at 11:43:05AM +0300, Mikko Perttunen wrote:
> Add support for the implementation of Host1x present on the Tegra186.
> The register space has been shuffled around a little bit, requiring
> addition of some chip-specific code sections. Tegra186 also adds
> several new features, most importantly the hypervisor, but those are
> not yet supported with this commit.
> 
> Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
> Reviewed-by: Dmitry Osipenko <digetx@gmail.com>
> Tested-by: Dmitry Osipenko <digetx@gmail.com>
> ---
>  drivers/gpu/host1x/Makefile                    |   3 +-
>  drivers/gpu/host1x/dev.c                       |  60 +++++++-
>  drivers/gpu/host1x/dev.h                       |   4 +
>  drivers/gpu/host1x/hw/cdma_hw.c                |  49 ++++---
>  drivers/gpu/host1x/hw/debug_hw.c               | 137 +------------------
>  drivers/gpu/host1x/hw/debug_hw_1x01.c          | 154 +++++++++++++++++++++
>  drivers/gpu/host1x/hw/debug_hw_1x06.c          | 133 ++++++++++++++++++
>  drivers/gpu/host1x/hw/host1x01.c               |   2 +
>  drivers/gpu/host1x/hw/host1x02.c               |   2 +
>  drivers/gpu/host1x/hw/host1x04.c               |   2 +
>  drivers/gpu/host1x/hw/host1x05.c               |   2 +
>  drivers/gpu/host1x/hw/host1x06.c               |  44 ++++++
>  drivers/gpu/host1x/hw/host1x06.h               |  26 ++++
>  drivers/gpu/host1x/hw/host1x06_hardware.h      | 142 +++++++++++++++++++
>  drivers/gpu/host1x/hw/hw_host1x06_hypervisor.h |  32 +++++
>  drivers/gpu/host1x/hw/hw_host1x06_uclass.h     | 181 +++++++++++++++++++++++++
>  drivers/gpu/host1x/hw/hw_host1x06_vm.h         |  47 +++++++
>  drivers/gpu/host1x/hw/intr_hw.c                |  29 ++--
>  18 files changed, 880 insertions(+), 169 deletions(-)
>  create mode 100644 drivers/gpu/host1x/hw/debug_hw_1x01.c
>  create mode 100644 drivers/gpu/host1x/hw/debug_hw_1x06.c
>  create mode 100644 drivers/gpu/host1x/hw/host1x06.c
>  create mode 100644 drivers/gpu/host1x/hw/host1x06.h
>  create mode 100644 drivers/gpu/host1x/hw/host1x06_hardware.h
>  create mode 100644 drivers/gpu/host1x/hw/hw_host1x06_hypervisor.h
>  create mode 100644 drivers/gpu/host1x/hw/hw_host1x06_uclass.h
>  create mode 100644 drivers/gpu/host1x/hw/hw_host1x06_vm.h

Applied, thanks.

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2017-10-19 11:39 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-05  8:43 [PATCH v2 0/6] Host1x and VIC support for Tegra186 Mikko Perttunen
2017-09-05  8:43 ` Mikko Perttunen
2017-09-05  8:43 ` Mikko Perttunen
2017-09-05  8:43 ` [PATCH v2 2/6] arm64: tegra: Add host1x on Tegra186 Mikko Perttunen
2017-09-05  8:43   ` Mikko Perttunen
2017-09-05  8:43   ` Mikko Perttunen
2017-10-19 10:50   ` Thierry Reding
2017-10-19 10:50     ` Thierry Reding
2017-10-19 10:50     ` Thierry Reding
2017-09-05  8:43 ` [PATCH v2 3/6] arm64: tegra: Add VIC " Mikko Perttunen
2017-09-05  8:43   ` Mikko Perttunen
2017-09-05  8:43   ` Mikko Perttunen
     [not found]   ` <20170905084306.19318-4-mperttunen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2017-10-19 10:50     ` Thierry Reding
2017-10-19 10:50       ` Thierry Reding
2017-10-19 10:50       ` Thierry Reding
2017-09-05  8:43 ` [PATCH v2 4/6] dt-bindings: host1x: Add Tegra186 information Mikko Perttunen
2017-09-05  8:43   ` Mikko Perttunen
     [not found]   ` <20170905084306.19318-5-mperttunen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2017-09-12 21:49     ` Rob Herring
2017-09-12 21:49       ` Rob Herring
2017-09-12 21:49       ` Rob Herring
2017-10-19 11:39     ` Thierry Reding
2017-10-19 11:39       ` Thierry Reding
2017-10-19 11:39       ` Thierry Reding
2017-09-05  8:43 ` [PATCH v2 5/6] gpu: host1x: Add Tegra186 support Mikko Perttunen
2017-09-05  8:43   ` Mikko Perttunen
2017-09-05  8:43   ` Mikko Perttunen
2017-10-19 11:39   ` Thierry Reding [this message]
2017-10-19 11:39     ` Thierry Reding
2017-10-19 11:39     ` Thierry Reding
     [not found] ` <20170905084306.19318-1-mperttunen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2017-09-05  8:43   ` [PATCH v2 1/6] arm64: tegra: Add #power-domain-cells for BPMP Mikko Perttunen
2017-09-05  8:43     ` Mikko Perttunen
2017-09-05  8:43     ` Mikko Perttunen
2017-10-19 10:49     ` Thierry Reding
2017-10-19 10:49       ` Thierry Reding
2017-09-05  8:43   ` [PATCH v2 6/6] drm/tegra: Add Tegra186 support for VIC Mikko Perttunen
2017-09-05  8:43     ` Mikko Perttunen
2017-09-05  8:43     ` Mikko Perttunen
2017-10-19 11:40     ` Thierry Reding
2017-10-19 11:40       ` Thierry Reding
2017-10-19 11:40       ` Thierry Reding
2017-09-05 11:10 ` [PATCH v2 0/6] Host1x and VIC support for Tegra186 Daniel Vetter
2017-09-05 11:10   ` Daniel Vetter
2017-09-05 11:10   ` Daniel Vetter
     [not found]   ` <20170905111031.u4damueklnuliqt4-dv86pmgwkMBes7Z6vYuT8azUEOm+Xw19@public.gmane.org>
2017-09-05 11:28     ` Mikko Perttunen
2017-09-05 11:28       ` Mikko Perttunen
2017-09-05 11:28       ` Mikko Perttunen

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=20171019113945.GP9005@ulmo \
    --to=thierry.reding@gmail.com \
    --cc=amerilainen@nvidia.com \
    --cc=devicetree@vger.kernel.org \
    --cc=digetx@gmail.com \
    --cc=dnibade@nvidia.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jonathanh@nvidia.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=mperttunen@nvidia.com \
    --cc=robh+dt@kernel.org \
    --cc=sgurrappadi@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.