From: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
To: Julien Stephan <jstephan@baylibre.com>
Cc: krzysztof.kozlowski@linaro.org, robh@kernel.org,
chunkuang.hu@kernel.org, linux-mediatek@lists.infradead.org,
Phi-bang Nguyen <pnguyen@baylibre.com>,
Louis Kuo <louis.kuo@mediatek.com>,
Chunfeng Yun <chunfeng.yun@mediatek.com>,
Vinod Koul <vkoul@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Andy Hsieh <andy.hsieh@mediatek.com>,
Philipp Zabel <p.zabel@pengutronix.de>,
Matthias Brugger <matthias.bgg@gmail.com>,
open list <linux-kernel@vger.kernel.org>,
"moderated list:ARM/Mediatek USB3 PHY DRIVER"
<linux-arm-kernel@lists.infradead.org>,
"open list:GENERIC PHY FRAMEWORK" <linux-phy@lists.infradead.org>,
"open list:DRM DRIVERS FOR MEDIATEK"
<dri-devel@lists.freedesktop.org>
Subject: Re: [PATCH v2 2/2] phy: mtk-mipi-csi: add driver for CSI phy
Date: Tue, 16 May 2023 16:55:55 +0200 [thread overview]
Message-ID: <de62cddc-affe-297c-f020-425f80e683fe@collabora.com> (raw)
In-Reply-To: <shthzc3zekvm2mrcch6vexsq5djpoxwupvdmmovhrz2ack3wxx@s4ptfhq7iwvi>
Il 16/05/23 11:30, Julien Stephan ha scritto:
> On Mon, May 15, 2023 at 04:32:42PM +0200, AngeloGioacchino Del Regno wrote:
>> Il 15/05/23 16:07, Julien Stephan ha scritto:
>>> On Mon, May 15, 2023 at 02:22:52PM +0200, AngeloGioacchino Del Regno wrote:
>>>>> +#define CSIxB_OFFSET 0x1000
>>>>
>>>> What if we grab two (or three?) iospaces from devicetree?
>>>>
>>>> - base (global)
>>>> - csi_a
>>>> - csi_b
>>>>
>>>> That would make it possible to maybe eventually extend this driver to more
>>>> versions (older or newer) of the CSI PHY IP without putting fixes offsets
>>>> inside of platform data structures and such.
>>>>
>>> Hi Angelo,
>>> The register bank of the CSI port is divided into 2:
>>> * from base address to base + 0x1000 (port A)
>>> * from base + 0x1000 to base +0x2000 (port B)
>>> Some CSI port can be configured in 4D1C mode (4 data + 1 clock) using
>>> the whole register bank from base to base + 0x2000 or in 2D1C mode (2 data +
>>> 1 clock) and use either port A or port B.
>>>
>>> For example mt8365 has CSI0 that can be used either in 4D1C mode or in
>>> 2 * 2D1C and CSI1 which can use only 4D1C mode
>>>
>>> 2D1C mode can not be tested and is not implemented in the driver so
>>> I guess adding csi_a and csi_b reg value may be confusing?
>>>
>>> What do you think?
>>
>> Ok so we're talking about two data lanes per CSI port... it may still be
>> beneficial to split the two register regions as
>>
>> reg-names = "csi-a", "csi-b"; (whoops, I actually used underscores before,
>> and that was a mistake, sorry!)
>>
>> ....but that would be actually good only if we are expecting to get a CSI
>> PHY in the future with four data lanes per port.
>>
>> If you do *not* expect at all such a CSI PHY, or you do *not* expect such
>> a PHY to ever be compatible with this driver (read as: if you expect such
>> a PHY to be literally completely different from this one), then it would
>> not change much to have the registers split in two.
>>
>> Another case in which it would make sense is if we were to get a PHY that
>> provides more than two CSI ports: in that case, we'd avoid platform data
>> machinery to check the number of actual ports in the IP, as we would be
>> just checking how many register regions we were given from the devicetree,
>> meaning that if we got "csi-a", "csi-b", "csi-c", "csi-d", we have four
>> ports.
>>
>> Besides, another thing to think about is... yes you cannot test nor implement
>> 2D1C mode in your submission, but this doesn't mean that others won't ever be
>> interested in this and that other people won't be actually implementing that;
>> Providing them with the right initial driver structure will surely make things
>> easier, encouraging other people from the community to spend their precious
>> time on the topic.
>>
> Hi Angelo,
> Ok, I see your point, but for future potential upgrade to support A/B
> ports I was thinking of something else: adding independent nodes for csixA
> and csixB such as:
>
> csi0_rx: phy@11c10000 {
> reg = <0 0x11C10000 0 0x2000>;
> mediatek,mode = <4D1c>;
> ...
> };
>
> csi0a_rx: phy@11c10000 {
> reg = <0 0x11C10000 0 0x1000>;
> mediatek,mode = <2D1c>;
> ...
> };
> csi0b_rx: phy@11c11000 {
> reg = <0 0x11C11000 0 0x1000>;
> mediatek,mode = <2D1c>;
> ...
> };
>
> giving the correct register range. One thing I did not mention is that if
> csi0_rx is used csi0a_rx and csi0b_rx cannot be used (they share same
> physical lanes as csio_rx), but csi0a_rx and csi0b_rx can be used simultaneously.
> So platform device will enable only the node(s) it needs and enabling
> csi0_rx and csioa/b_rx will fail because they share the same register
> region and map will fail and it does not have any sense because you
> either have a camera using the whole port or sub port but you cannot have
> both plugged in. What do you think about it?
>
Your description of the hardware makes me even more confident in pushing for
having one single node with multiple iospaces.
You could have a node such as:
csi0_rx: phy@11c10000 {
compatible = ....
reg = <0 0x11c10000 0 0x1000>, <0 0x11c20000 0 0x1000>;
reg-names = "csi-a", "csi-b";
/* 4 means 4D1C */
num-lanes = <4>;
or
/* 2 means 2D1C */
num-lanes = <2>;
};
You would then reference the csi0_rx node as:
/* PHY is configured as 4 lanes (4D1C) */
something = <&csi0_rx 0>;
or
/* First two lanes (CSI0 PORT-A) */
something = <&csi0_rx 0>;
/* Second two lanes (CSI0 PORT-B) */
something = <&csi0_rx 1>;
Preferrably, you should (or shall?) use a graph to describe such connections,
anyway.
This is because overriding the number of lanes on a per-board basis becomes
*otherwise* difficult, in the sense of human readability issues, other than
duplicated nodes being a real issue.
Regards,
Angelo
prev parent reply other threads:[~2023-05-16 14:56 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-15 9:05 [PATCH v2 0/2] " Julien Stephan
2023-05-15 9:05 ` [PATCH v2 1/2] dt-bindings: phy: add mediatek mipi csi driver v 0.5 Julien Stephan
2023-05-15 12:25 ` AngeloGioacchino Del Regno
2023-05-16 8:07 ` Krzysztof Kozlowski
2023-05-16 9:41 ` Julien Stephan
2023-05-16 12:56 ` Krzysztof Kozlowski
2023-05-16 17:00 ` Kevin Hilman
2023-05-16 17:46 ` Krzysztof Kozlowski
2023-05-16 21:31 ` Kevin Hilman
2023-05-17 7:40 ` Krzysztof Kozlowski
2023-05-22 19:15 ` Kevin Hilman
2023-05-30 8:53 ` Krzysztof Kozlowski
2023-06-05 8:44 ` Julien Stephan
2023-06-08 13:49 ` Rob Herring
2023-05-25 7:09 ` Chunfeng Yun (云春峰)
2023-05-15 9:05 ` [PATCH v2 2/2] phy: mtk-mipi-csi: add driver for CSI phy Julien Stephan
2023-05-15 12:22 ` AngeloGioacchino Del Regno
2023-05-15 13:36 ` Julien Stephan
2023-05-15 14:22 ` AngeloGioacchino Del Regno
2023-05-15 14:52 ` Julien Stephan
2023-05-15 14:07 ` Julien Stephan
2023-05-15 14:32 ` AngeloGioacchino Del Regno
2023-05-16 9:30 ` Julien Stephan
2023-05-16 14:55 ` AngeloGioacchino Del Regno [this message]
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=de62cddc-affe-297c-f020-425f80e683fe@collabora.com \
--to=angelogioacchino.delregno@collabora.com \
--cc=andy.hsieh@mediatek.com \
--cc=chunfeng.yun@mediatek.com \
--cc=chunkuang.hu@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=jstephan@baylibre.com \
--cc=kishon@kernel.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-phy@lists.infradead.org \
--cc=louis.kuo@mediatek.com \
--cc=matthias.bgg@gmail.com \
--cc=p.zabel@pengutronix.de \
--cc=pnguyen@baylibre.com \
--cc=robh@kernel.org \
--cc=vkoul@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome