mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: AngeloGioacchino Del Regno  <angelogioacchino.delregno@collabora.com>
To: "Yanchao Yang (杨彦超)" <Yanchao.Yang@mediatek.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"ryazanov.s.a@gmail.com" <ryazanov.s.a@gmail.com>,
	"kuba@kernel.org" <kuba@kernel.org>,
	"loic.poulain@linaro.org" <loic.poulain@linaro.org>,
	"edumazet@google.com" <edumazet@google.com>,
	"pabeni@redhat.com" <pabeni@redhat.com>,
	"johannes@sipsolutions.net" <johannes@sipsolutions.net>,
	"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
	"davem@davemloft.net" <davem@davemloft.net>
Cc: "Chris Feng (冯保林)" <Chris.Feng@mediatek.com>,
	"linux-mediatek@lists.infradead.org"
	<linux-mediatek@lists.infradead.org>,
	"Mingliang Xu (徐明亮)" <mingliang.xu@mediatek.com>,
	"linuxwwan@mediatek.com" <linuxwwan@mediatek.com>,
	"Min Dong (董敏)" <min.dong@mediatek.com>,
	"linuxwwan@intel.com" <linuxwwan@intel.com>,
	"m.chetan.kumar@intel.com" <m.chetan.kumar@intel.com>,
	"Liang Lu (吕亮)" <liang.lu@mediatek.com>,
	"Haijun Liu (刘海军)" <haijun.liu@mediatek.com>,
	"Haozhe Chang (常浩哲)" <Haozhe.Chang@mediatek.com>,
	"Hua Yang (杨华)" <Hua.Yang@mediatek.com>,
	"Xiayu Zhang (张夏宇)" <Xiayu.Zhang@mediatek.com>,
	"Aiden Wang (王咏麒)" <Aiden.Wang@mediatek.com>,
	"Felix Chen (陈非)" <Felix.Chen@mediatek.com>,
	"Ting Wang (王挺)" <ting.wang@mediatek.com>,
	"Guohao Zhang (张国豪)" <Guohao.Zhang@mediatek.com>,
	"Mingchuang Qiao (乔明闯)" <Mingchuang.Qiao@mediatek.com>,
	"Lambert Wang (王伟)" <Lambert.Wang@mediatek.com>
Subject: Re: [PATCH net-next v1 01/13] net: wwan: tmi: Add PCIe core
Date: Mon, 5 Dec 2022 13:47:40 +0100	[thread overview]
Message-ID: <4411cfd9-7286-32fd-2032-622caa099e91@collabora.com> (raw)
In-Reply-To: <e7d3bfeed57157e8859a24f501b7efb74e21f0f9.camel@mediatek.com>

Il 05/12/22 13:40, Yanchao Yang (杨彦超) ha scritto:
> On Thu, 2022-11-24 at 12:06 +0100, AngeloGioacchino Del Regno wrote:
>> Il 22/11/22 12:11, Yanchao Yang ha scritto:
>>> From: MediaTek Corporation <linuxwwan@mediatek.com>
>>>
>>> Registers the TMI device driver with the kernel. Set up all the
>>> fundamental
>>> configurations for the device: PCIe layer, Modem Host Cross Core
>>> Interface
>>> (MHCCIF), Reset Generation Unit (RGU), modem common control
>>> operations and
>>> build infrastructure.
>>>
>>> * PCIe layer code implements driver probe and removal, MSI-X
>>> interrupt
>>> initialization and de-initialization, and the way of resetting the
>>> device.
>>> * MHCCIF provides interrupt channels to communicate events such as
>>> handshake,
>>> PM and port enumeration.
>>> * RGU provides interrupt channels to generate notifications from
>>> the device
>>> so that the TMI driver could get the device reset.
>>> * Modem common control operations provide the basic read/write
>>> functions of
>>> the device's hardware registers, mask/unmask/get/clear functions of
>>> the
>>> device's interrupt registers and inquiry functions of the device's
>>> status.
>>>
>>> Signed-off-by: Ting Wang <ting.wang@mediatek.com>
>>> Signed-off-by: MediaTek Corporation <linuxwwan@mediatek.com>
> 
> Hello Angelo,
> 
>> Hello Yanchao,
>> thanks for the patch! However, there are some things to improve...
>>
>> First of all, you have to signoff (in your name) all patches that you
>> send.
> 
> Thank your suggestion. Fix it next version (add Signed-off-by: Yanchao
> Yang <yanchao.yang@mediatek.com> for all patches)
>> Check below for more comments...
>>
>>> ---

..snip.. :-)

There's a misunderstanding here: when I write

"..snip.."

I mean "I'm snipping out lines of code for which I have no comments, or
for which comments are redundant"

I do that to increase readability of reviews and decrease the size of the
mail that's going out, nothing else.

>>
>>> +	u32 (*read32)(struct mtk_md_dev *mdev, u64 addr);
>>
>> ..snip..
> 
> do you mean we should remove read function wrapper?

No, that's fine.

Regards,
Angelo

  reply	other threads:[~2022-12-05 12:48 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-22 11:11 [PATCH net-next v1 00/13] net: wwan: tmi: PCIe driver for MediaTek M.2 modem Yanchao Yang
2022-11-22 11:11 ` [PATCH net-next v1 01/13] net: wwan: tmi: Add PCIe core Yanchao Yang
2022-11-24 11:06   ` AngeloGioacchino Del Regno
2022-12-05 12:40     ` Yanchao Yang (杨彦超)
2022-12-05 12:47       ` AngeloGioacchino Del Regno [this message]
2022-12-26  1:43     ` Yanchao Yang (杨彦超)
2022-12-04 18:52   ` Sergey Ryazanov
2022-12-07  2:33     ` Yanchao Yang (杨彦超)
2022-12-16 20:40       ` Sergey Ryazanov
2023-01-11 13:33         ` Yanchao Yang (杨彦超)
2022-11-22 11:11 ` [PATCH net-next v1 02/13] net: wwan: tmi: Add buffer management Yanchao Yang
2022-12-04 18:58   ` Sergey Ryazanov
2022-12-09 10:26     ` Yanchao Yang (杨彦超)
2022-12-16 20:17       ` Sergey Ryazanov
2023-01-11 13:37         ` Yanchao Yang (杨彦超)
2022-11-22 11:11 ` [PATCH net-next v1 03/13] net: wwan: tmi: Add control plane transaction layer Yanchao Yang
2022-11-22 11:11 ` [PATCH net-next v1 04/13] net: wwan: tmi: Add control DMA interface Yanchao Yang
2022-11-22 11:11 ` [PATCH net-next v1 05/13] net: wwan: tmi: Add control port Yanchao Yang
2022-11-22 11:11 ` [PATCH net-next v1 06/13] net: wwan: tmi: Add FSM thread Yanchao Yang
2022-11-22 11:11 ` [PATCH net-next v1 07/13] net: wwan: tmi: Add AT & MBIM WWAN ports Yanchao Yang
2022-11-22 11:11 ` [PATCH net-next v1 08/13] net: wwan: tmi: Introduce data plane hardware interface Yanchao Yang
2022-11-22 11:11 ` [PATCH net-next v1 09/13] net: wwan: tmi: Add data plane transaction layer Yanchao Yang

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=4411cfd9-7286-32fd-2032-622caa099e91@collabora.com \
    --to=angelogioacchino.delregno@collabora.com \
    --cc=Aiden.Wang@mediatek.com \
    --cc=Chris.Feng@mediatek.com \
    --cc=Felix.Chen@mediatek.com \
    --cc=Guohao.Zhang@mediatek.com \
    --cc=Haozhe.Chang@mediatek.com \
    --cc=Hua.Yang@mediatek.com \
    --cc=Lambert.Wang@mediatek.com \
    --cc=Mingchuang.Qiao@mediatek.com \
    --cc=Xiayu.Zhang@mediatek.com \
    --cc=Yanchao.Yang@mediatek.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=haijun.liu@mediatek.com \
    --cc=johannes@sipsolutions.net \
    --cc=kuba@kernel.org \
    --cc=liang.lu@mediatek.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linuxwwan@intel.com \
    --cc=linuxwwan@mediatek.com \
    --cc=loic.poulain@linaro.org \
    --cc=m.chetan.kumar@intel.com \
    --cc=min.dong@mediatek.com \
    --cc=mingliang.xu@mediatek.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=ryazanov.s.a@gmail.com \
    --cc=ting.wang@mediatek.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®