All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sui Jingfeng <suijingfeng@loongson.cn>
To: Sui Jingfeng <15330273260@189.cn>,
	Lucas Stach <l.stach@pengutronix.de>,
	Christian Gmeiner <christian.gmeiner@gmail.com>,
	Daniel Vetter <daniel@ffwll.ch>,
	Bjorn Helgaas <bhelgaas@google.com>
Cc: linux-kernel@vger.kernel.org, etnaviv@lists.freedesktop.org,
	dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v7 0/7] drm/etnaviv: add pci device driver support
Date: Sat, 3 Jun 2023 19:20:43 +0800	[thread overview]
Message-ID: <af174b6c-3330-c054-23e4-32c41972eb53@loongson.cn> (raw)
In-Reply-To: <20230603105943.3042766-1-15330273260@189.cn>

Hi,


Sorry for sending duplicated patches.  Please don't get angry by me.

I'm just sending a patch set, which contain 7 patch. The command is as 
following:


git send-email V7/ --to "Lucas Stach <l.stach@pengutronix.de>" --to 
"Christian Gmeiner <christian.gmeiner@gmail.com>" --to "Daniel Vetter 
<daniel@ffwll.ch>" --to "Bjorn Helgaas <bhelgaas@google.com>" --cc 
"linux-kernel@vger.kernel.org" --cc "etnaviv@lists.freedesktop.org" --cc 
"dri-devel@lists.freedesktop.org" --cc "loongson-kernel@lists.loongnix.cn"


After run the above about command with my company's mailbox,  the 
termial report  "Too many commands"

which cause the last few patch of the whole patch set did not get send 
out(get lost).


Then,  I changed to another mail to send the patch with the same 
command, then its works finally.

Please don't get angry by me. Thanks.


On 2023/6/3 18:59, Sui Jingfeng wrote:
> From: Sui Jingfeng <suijingfeng@loongson.cn>
>
> There is a Vivante GC1000 (v5037) in LS2K1000 and LS7A1000, this GPU is a
> PCI device, and it has 2D and 3D cores in the same core. Thus, this patch
> set is trying to add PCI device driver support to etnaviv.
>
> v6:
> 	* Fix build issue on system without CONFIG_PCI enabled
> v7:
> 	* Add a separate patch for the platform driver rearrangement (Bjorn)
> 	* Switch to runtime check if the GPU is dma coherent or not (Lucas)
> 	* Add ETNAVIV_PARAM_GPU_COHERENT to allow userspace to query (Lucas)
> 	* Remove etnaviv_gpu.no_clk member (Lucas)
> 	* Various Typos and coding style fixed (Bjorn)
>
> Sui Jingfeng (7):
>    drm/etnaviv: add a dedicated function to register an irq handler
>    drm/etnaviv: add a dedicated function to get various clocks
>    drm/etnaviv: add dedicated functions to create and destroy platform
>      devices
>    drm/etnaviv: add helpers for private data construction and destruction
>    drm/etnaviv: allow bypass component framework
>    drm/etnaviv: add driver support for the PCI devices
>    drm/etnaviv: add support for the dma coherent device
>
>   drivers/gpu/drm/etnaviv/Kconfig             |   9 +
>   drivers/gpu/drm/etnaviv/Makefile            |   2 +
>   drivers/gpu/drm/etnaviv/etnaviv_drv.c       | 228 +++++++++++++++-----
>   drivers/gpu/drm/etnaviv/etnaviv_drv.h       |  10 +
>   drivers/gpu/drm/etnaviv/etnaviv_gem.c       |  22 +-
>   drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c |   7 +-
>   drivers/gpu/drm/etnaviv/etnaviv_gpu.c       | 170 ++++++++++-----
>   drivers/gpu/drm/etnaviv/etnaviv_gpu.h       |   9 +
>   drivers/gpu/drm/etnaviv/etnaviv_pci_drv.c   |  75 +++++++
>   drivers/gpu/drm/etnaviv/etnaviv_pci_drv.h   |   9 +
>   include/uapi/drm/etnaviv_drm.h              |   1 +
>   11 files changed, 422 insertions(+), 120 deletions(-)
>   create mode 100644 drivers/gpu/drm/etnaviv/etnaviv_pci_drv.c
>   create mode 100644 drivers/gpu/drm/etnaviv/etnaviv_pci_drv.h
>
-- 
Jingfeng


WARNING: multiple messages have this Message-ID (diff)
From: Sui Jingfeng <suijingfeng@loongson.cn>
To: Sui Jingfeng <15330273260@189.cn>,
	Lucas Stach <l.stach@pengutronix.de>,
	Christian Gmeiner <christian.gmeiner@gmail.com>,
	Daniel Vetter <daniel@ffwll.ch>,
	Bjorn Helgaas <bhelgaas@google.com>
Cc: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
	etnaviv@lists.freedesktop.org
Subject: Re: [PATCH v7 0/7] drm/etnaviv: add pci device driver support
Date: Sat, 3 Jun 2023 19:20:43 +0800	[thread overview]
Message-ID: <af174b6c-3330-c054-23e4-32c41972eb53@loongson.cn> (raw)
In-Reply-To: <20230603105943.3042766-1-15330273260@189.cn>

Hi,


Sorry for sending duplicated patches.  Please don't get angry by me.

I'm just sending a patch set, which contain 7 patch. The command is as 
following:


git send-email V7/ --to "Lucas Stach <l.stach@pengutronix.de>" --to 
"Christian Gmeiner <christian.gmeiner@gmail.com>" --to "Daniel Vetter 
<daniel@ffwll.ch>" --to "Bjorn Helgaas <bhelgaas@google.com>" --cc 
"linux-kernel@vger.kernel.org" --cc "etnaviv@lists.freedesktop.org" --cc 
"dri-devel@lists.freedesktop.org" --cc "loongson-kernel@lists.loongnix.cn"


After run the above about command with my company's mailbox,  the 
termial report  "Too many commands"

which cause the last few patch of the whole patch set did not get send 
out(get lost).


Then,  I changed to another mail to send the patch with the same 
command, then its works finally.

Please don't get angry by me. Thanks.


On 2023/6/3 18:59, Sui Jingfeng wrote:
> From: Sui Jingfeng <suijingfeng@loongson.cn>
>
> There is a Vivante GC1000 (v5037) in LS2K1000 and LS7A1000, this GPU is a
> PCI device, and it has 2D and 3D cores in the same core. Thus, this patch
> set is trying to add PCI device driver support to etnaviv.
>
> v6:
> 	* Fix build issue on system without CONFIG_PCI enabled
> v7:
> 	* Add a separate patch for the platform driver rearrangement (Bjorn)
> 	* Switch to runtime check if the GPU is dma coherent or not (Lucas)
> 	* Add ETNAVIV_PARAM_GPU_COHERENT to allow userspace to query (Lucas)
> 	* Remove etnaviv_gpu.no_clk member (Lucas)
> 	* Various Typos and coding style fixed (Bjorn)
>
> Sui Jingfeng (7):
>    drm/etnaviv: add a dedicated function to register an irq handler
>    drm/etnaviv: add a dedicated function to get various clocks
>    drm/etnaviv: add dedicated functions to create and destroy platform
>      devices
>    drm/etnaviv: add helpers for private data construction and destruction
>    drm/etnaviv: allow bypass component framework
>    drm/etnaviv: add driver support for the PCI devices
>    drm/etnaviv: add support for the dma coherent device
>
>   drivers/gpu/drm/etnaviv/Kconfig             |   9 +
>   drivers/gpu/drm/etnaviv/Makefile            |   2 +
>   drivers/gpu/drm/etnaviv/etnaviv_drv.c       | 228 +++++++++++++++-----
>   drivers/gpu/drm/etnaviv/etnaviv_drv.h       |  10 +
>   drivers/gpu/drm/etnaviv/etnaviv_gem.c       |  22 +-
>   drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c |   7 +-
>   drivers/gpu/drm/etnaviv/etnaviv_gpu.c       | 170 ++++++++++-----
>   drivers/gpu/drm/etnaviv/etnaviv_gpu.h       |   9 +
>   drivers/gpu/drm/etnaviv/etnaviv_pci_drv.c   |  75 +++++++
>   drivers/gpu/drm/etnaviv/etnaviv_pci_drv.h   |   9 +
>   include/uapi/drm/etnaviv_drm.h              |   1 +
>   11 files changed, 422 insertions(+), 120 deletions(-)
>   create mode 100644 drivers/gpu/drm/etnaviv/etnaviv_pci_drv.c
>   create mode 100644 drivers/gpu/drm/etnaviv/etnaviv_pci_drv.h
>
-- 
Jingfeng


  parent reply	other threads:[~2023-06-03 11:20 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-03 10:59 [PATCH v7 0/7] drm/etnaviv: add pci device driver support Sui Jingfeng
2023-06-03 10:59 ` Sui Jingfeng
2023-06-03 10:59 ` [PATCH v7 1/7] drm/etnaviv: add a dedicated function to register an irq handler Sui Jingfeng
2023-06-03 10:59   ` Sui Jingfeng
2023-06-03 10:59 ` [PATCH v7 2/7] drm/etnaviv: add a dedicated function to get various clocks Sui Jingfeng
2023-06-03 10:59   ` Sui Jingfeng
2023-06-03 10:59 ` [PATCH v7 3/7] drm/etnaviv: add dedicated functions to create and destroy platform devices Sui Jingfeng
2023-06-03 10:59   ` Sui Jingfeng
2023-06-03 10:59 ` [PATCH v7 4/7] drm/etnaviv: add helpers for private data construction and destruction Sui Jingfeng
2023-06-03 10:59   ` Sui Jingfeng
2023-06-03 10:59 ` [PATCH v7 5/7] drm/etnaviv: allow bypass component framework Sui Jingfeng
2023-06-03 10:59   ` Sui Jingfeng
2023-06-03 10:59 ` [PATCH v7 6/7] drm/etnaviv: add driver support for the PCI devices Sui Jingfeng
2023-06-03 10:59   ` Sui Jingfeng
2023-06-03 10:59 ` [PATCH v7 7/7] drm/etnaviv: add support for the dma coherent device Sui Jingfeng
2023-06-03 10:59   ` Sui Jingfeng
2023-06-06 16:56   ` Bjorn Helgaas
2023-06-06 16:56     ` Bjorn Helgaas
2023-06-06 18:43     ` Sui Jingfeng
2023-06-06 18:43       ` Sui Jingfeng
2023-06-06 19:01       ` Bjorn Helgaas
2023-06-06 19:01         ` Bjorn Helgaas
2023-06-03 11:20 ` Sui Jingfeng [this message]
2023-06-03 11:20   ` [PATCH v7 0/7] drm/etnaviv: add pci device driver support Sui Jingfeng
  -- strict thread matches above, loose matches on Subject: below --
2023-06-03 10:56 Sui Jingfeng
2023-06-03 10:56 ` Sui Jingfeng
2023-06-03 10:48 Sui Jingfeng
2023-06-03 10:48 ` Sui Jingfeng
2023-06-03 10:39 Sui Jingfeng
2023-06-03 10:39 ` Sui Jingfeng
2023-06-03 10:37 Sui Jingfeng
2023-06-03 10:37 ` Sui Jingfeng

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=af174b6c-3330-c054-23e4-32c41972eb53@loongson.cn \
    --to=suijingfeng@loongson.cn \
    --cc=15330273260@189.cn \
    --cc=bhelgaas@google.com \
    --cc=christian.gmeiner@gmail.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=etnaviv@lists.freedesktop.org \
    --cc=l.stach@pengutronix.de \
    --cc=linux-kernel@vger.kernel.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.