* [PATCH v2 0/2] media: nxp: imx8-isi: Add i.MX8ULP support
@ 2024-10-12 8:47 guoniu.zhou
2024-10-12 8:47 ` [PATCH v2 1/2] " guoniu.zhou
2024-10-12 8:47 ` [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string guoniu.zhou
0 siblings, 2 replies; 10+ messages in thread
From: guoniu.zhou @ 2024-10-12 8:47 UTC (permalink / raw)
To: linux-media
Cc: laurent.pinchart, jacopo, mchehab, robh, krzk+dt, conor+dt,
shawnguo, s.hauer, kernel, festevam, devicetree, imx,
linux-kernel
From: "Guoniu.zhou" <guoniu.zhou@nxp.com>
This small patch series is to add ISI support for i.MX8ULP.
Changes in v2:
- Correct clocks used by ISI, it includes both APB and AXI.
Guoniu.zhou (2):
media: nxp: imx8-isi: Add i.MX8ULP support
dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string
.../devicetree/bindings/media/nxp,imx8-isi.yaml | 2 ++
.../media/platform/nxp/imx8-isi/imx8-isi-core.c | 14 ++++++++++++++
.../media/platform/nxp/imx8-isi/imx8-isi-core.h | 1 +
3 files changed, 17 insertions(+)
base-commit: 67cefecf2a039b9ed0030b9213ceafcd45e6f9e3
--
2.34.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 1/2] media: nxp: imx8-isi: Add i.MX8ULP support
2024-10-12 8:47 [PATCH v2 0/2] media: nxp: imx8-isi: Add i.MX8ULP support guoniu.zhou
@ 2024-10-12 8:47 ` guoniu.zhou
2024-10-13 16:40 ` Laurent Pinchart
2024-10-14 7:30 ` Krzysztof Kozlowski
2024-10-12 8:47 ` [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string guoniu.zhou
1 sibling, 2 replies; 10+ messages in thread
From: guoniu.zhou @ 2024-10-12 8:47 UTC (permalink / raw)
To: linux-media
Cc: laurent.pinchart, jacopo, mchehab, robh, krzk+dt, conor+dt,
shawnguo, s.hauer, kernel, festevam, devicetree, imx,
linux-kernel
From: "Guoniu.zhou" <guoniu.zhou@nxp.com>
Add ISI support for i.MX8ULP.
Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com>
---
.../media/platform/nxp/imx8-isi/imx8-isi-core.c | 14 ++++++++++++++
.../media/platform/nxp/imx8-isi/imx8-isi-core.h | 1 +
2 files changed, 15 insertions(+)
diff --git a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
index c2013995049c..528e723114d5 100644
--- a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
+++ b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
@@ -307,6 +307,19 @@ static const struct mxc_isi_plat_data mxc_imx8mp_data = {
.has_36bit_dma = true,
};
+static const struct mxc_isi_plat_data mxc_imx8ulp_data = {
+ .model = MXC_ISI_IMX8ULP,
+ .num_ports = 1,
+ .num_channels = 1,
+ .reg_offset = 0x0,
+ .ier_reg = &mxc_imx8_isi_ier_v2,
+ .set_thd = &mxc_imx8_isi_thd_v1,
+ .clks = mxc_imx8mn_clks,
+ .num_clks = ARRAY_SIZE(mxc_imx8mn_clks),
+ .buf_active_reverse = true,
+ .has_36bit_dma = false,
+};
+
static const struct mxc_isi_plat_data mxc_imx93_data = {
.model = MXC_ISI_IMX93,
.num_ports = 1,
@@ -528,6 +541,7 @@ static void mxc_isi_remove(struct platform_device *pdev)
static const struct of_device_id mxc_isi_of_match[] = {
{ .compatible = "fsl,imx8mn-isi", .data = &mxc_imx8mn_data },
{ .compatible = "fsl,imx8mp-isi", .data = &mxc_imx8mp_data },
+ { .compatible = "fsl,imx8ulp-isi", .data = &mxc_imx8ulp_data },
{ .compatible = "fsl,imx93-isi", .data = &mxc_imx93_data },
{ /* sentinel */ },
};
diff --git a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h
index 2810ebe9b5f7..9c7fe9e5f941 100644
--- a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h
+++ b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h
@@ -158,6 +158,7 @@ struct mxc_gasket_ops {
enum model {
MXC_ISI_IMX8MN,
MXC_ISI_IMX8MP,
+ MXC_ISI_IMX8ULP,
MXC_ISI_IMX93,
};
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string
2024-10-12 8:47 [PATCH v2 0/2] media: nxp: imx8-isi: Add i.MX8ULP support guoniu.zhou
2024-10-12 8:47 ` [PATCH v2 1/2] " guoniu.zhou
@ 2024-10-12 8:47 ` guoniu.zhou
2024-10-13 16:24 ` Laurent Pinchart
2024-10-14 7:30 ` Krzysztof Kozlowski
1 sibling, 2 replies; 10+ messages in thread
From: guoniu.zhou @ 2024-10-12 8:47 UTC (permalink / raw)
To: linux-media
Cc: laurent.pinchart, jacopo, mchehab, robh, krzk+dt, conor+dt,
shawnguo, s.hauer, kernel, festevam, devicetree, imx,
linux-kernel
From: "Guoniu.zhou" <guoniu.zhou@nxp.com>
Add the compatible string support for i.MX8ULP ISI.
Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com>
---
Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml b/Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
index 4d5348d456a1..f43b91984f01 100644
--- a/Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
+++ b/Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
@@ -21,6 +21,7 @@ properties:
enum:
- fsl,imx8mn-isi
- fsl,imx8mp-isi
+ - fsl,imx8ulp-isi
- fsl,imx93-isi
reg:
@@ -75,6 +76,7 @@ allOf:
contains:
enum:
- fsl,imx8mn-isi
+ - fsl,imx8ulp-isi
- fsl,imx93-isi
then:
properties:
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string
2024-10-12 8:47 ` [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string guoniu.zhou
@ 2024-10-13 16:24 ` Laurent Pinchart
2024-10-14 7:30 ` Krzysztof Kozlowski
1 sibling, 0 replies; 10+ messages in thread
From: Laurent Pinchart @ 2024-10-13 16:24 UTC (permalink / raw)
To: guoniu.zhou
Cc: linux-media, jacopo, mchehab, robh, krzk+dt, conor+dt, shawnguo,
s.hauer, kernel, festevam, devicetree, imx, linux-kernel
Hi Guoniu,
Thank you for the patch.
On Sat, Oct 12, 2024 at 04:47:35PM +0800, guoniu.zhou@oss.nxp.com wrote:
> From: "Guoniu.zhou" <guoniu.zhou@nxp.com>
>
> Add the compatible string support for i.MX8ULP ISI.
>
> Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml b/Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
> index 4d5348d456a1..f43b91984f01 100644
> --- a/Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
> +++ b/Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
> @@ -21,6 +21,7 @@ properties:
> enum:
> - fsl,imx8mn-isi
> - fsl,imx8mp-isi
> + - fsl,imx8ulp-isi
> - fsl,imx93-isi
>
> reg:
> @@ -75,6 +76,7 @@ allOf:
> contains:
> enum:
> - fsl,imx8mn-isi
> + - fsl,imx8ulp-isi
> - fsl,imx93-isi
> then:
> properties:
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/2] media: nxp: imx8-isi: Add i.MX8ULP support
2024-10-12 8:47 ` [PATCH v2 1/2] " guoniu.zhou
@ 2024-10-13 16:40 ` Laurent Pinchart
2024-10-14 7:30 ` Krzysztof Kozlowski
1 sibling, 0 replies; 10+ messages in thread
From: Laurent Pinchart @ 2024-10-13 16:40 UTC (permalink / raw)
To: guoniu.zhou
Cc: linux-media, jacopo, mchehab, robh, krzk+dt, conor+dt, shawnguo,
s.hauer, kernel, festevam, devicetree, imx, linux-kernel
Hi Guoniu,
Thank you for the patch.
On Sat, Oct 12, 2024 at 04:47:33PM +0800, guoniu.zhou@oss.nxp.com wrote:
> From: "Guoniu.zhou" <guoniu.zhou@nxp.com>
>
> Add ISI support for i.MX8ULP.
>
> Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> .../media/platform/nxp/imx8-isi/imx8-isi-core.c | 14 ++++++++++++++
> .../media/platform/nxp/imx8-isi/imx8-isi-core.h | 1 +
> 2 files changed, 15 insertions(+)
>
> diff --git a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
> index c2013995049c..528e723114d5 100644
> --- a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
> +++ b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
> @@ -307,6 +307,19 @@ static const struct mxc_isi_plat_data mxc_imx8mp_data = {
> .has_36bit_dma = true,
> };
>
> +static const struct mxc_isi_plat_data mxc_imx8ulp_data = {
> + .model = MXC_ISI_IMX8ULP,
> + .num_ports = 1,
> + .num_channels = 1,
> + .reg_offset = 0x0,
> + .ier_reg = &mxc_imx8_isi_ier_v2,
> + .set_thd = &mxc_imx8_isi_thd_v1,
> + .clks = mxc_imx8mn_clks,
> + .num_clks = ARRAY_SIZE(mxc_imx8mn_clks),
> + .buf_active_reverse = true,
> + .has_36bit_dma = false,
> +};
> +
> static const struct mxc_isi_plat_data mxc_imx93_data = {
> .model = MXC_ISI_IMX93,
> .num_ports = 1,
> @@ -528,6 +541,7 @@ static void mxc_isi_remove(struct platform_device *pdev)
> static const struct of_device_id mxc_isi_of_match[] = {
> { .compatible = "fsl,imx8mn-isi", .data = &mxc_imx8mn_data },
> { .compatible = "fsl,imx8mp-isi", .data = &mxc_imx8mp_data },
> + { .compatible = "fsl,imx8ulp-isi", .data = &mxc_imx8ulp_data },
> { .compatible = "fsl,imx93-isi", .data = &mxc_imx93_data },
> { /* sentinel */ },
> };
> diff --git a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h
> index 2810ebe9b5f7..9c7fe9e5f941 100644
> --- a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h
> +++ b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h
> @@ -158,6 +158,7 @@ struct mxc_gasket_ops {
> enum model {
> MXC_ISI_IMX8MN,
> MXC_ISI_IMX8MP,
> + MXC_ISI_IMX8ULP,
> MXC_ISI_IMX93,
> };
>
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string
2024-10-12 8:47 ` [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string guoniu.zhou
2024-10-13 16:24 ` Laurent Pinchart
@ 2024-10-14 7:30 ` Krzysztof Kozlowski
2024-10-14 8:27 ` G.N. Zhou (OSS)
1 sibling, 1 reply; 10+ messages in thread
From: Krzysztof Kozlowski @ 2024-10-14 7:30 UTC (permalink / raw)
To: guoniu.zhou
Cc: linux-media, laurent.pinchart, jacopo, mchehab, robh, krzk+dt,
conor+dt, shawnguo, s.hauer, kernel, festevam, devicetree, imx,
linux-kernel
On Sat, Oct 12, 2024 at 04:47:35PM +0800, guoniu.zhou@oss.nxp.com wrote:
> From: "Guoniu.zhou" <guoniu.zhou@nxp.com>
Are you sure your name includes the dot? Or you just use login as full
name?
>
> Add the compatible string support for i.MX8ULP ISI.
>
> Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com>
> ---
> Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml | 2 ++
> 1 file changed, 2 insertions(+)
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/2] media: nxp: imx8-isi: Add i.MX8ULP support
2024-10-12 8:47 ` [PATCH v2 1/2] " guoniu.zhou
2024-10-13 16:40 ` Laurent Pinchart
@ 2024-10-14 7:30 ` Krzysztof Kozlowski
1 sibling, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2024-10-14 7:30 UTC (permalink / raw)
To: guoniu.zhou
Cc: linux-media, laurent.pinchart, jacopo, mchehab, robh, krzk+dt,
conor+dt, shawnguo, s.hauer, kernel, festevam, devicetree, imx,
linux-kernel
On Sat, Oct 12, 2024 at 04:47:33PM +0800, guoniu.zhou@oss.nxp.com wrote:
> From: "Guoniu.zhou" <guoniu.zhou@nxp.com>
>
> Add ISI support for i.MX8ULP.
>
> Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com>
Same question.
> ---
> .../media/platform/nxp/imx8-isi/imx8-isi-core.c | 14 ++++++++++++++
> .../media/platform/nxp/imx8-isi/imx8-isi-core.h | 1 +
> 2 files changed, 15 insertions(+)
>
> diff --git a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
> index c2013995049c..528e723114d5 100644
> --- a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
> +++ b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
> @@ -307,6 +307,19 @@ static const struct mxc_isi_plat_data mxc_imx8mp_data = {
> .has_36bit_dma = true,
> };
>
> +static const struct mxc_isi_plat_data mxc_imx8ulp_data = {
> + .model = MXC_ISI_IMX8ULP,
> + .num_ports = 1,
> + .num_channels = 1,
> + .reg_offset = 0x0,
> + .ier_reg = &mxc_imx8_isi_ier_v2,
> + .set_thd = &mxc_imx8_isi_thd_v1,
> + .clks = mxc_imx8mn_clks,
> + .num_clks = ARRAY_SIZE(mxc_imx8mn_clks),
> + .buf_active_reverse = true,
> + .has_36bit_dma = false,
> +};
> +
> static const struct mxc_isi_plat_data mxc_imx93_data = {
> .model = MXC_ISI_IMX93,
> .num_ports = 1,
> @@ -528,6 +541,7 @@ static void mxc_isi_remove(struct platform_device *pdev)
> static const struct of_device_id mxc_isi_of_match[] = {
> { .compatible = "fsl,imx8mn-isi", .data = &mxc_imx8mn_data },
> { .compatible = "fsl,imx8mp-isi", .data = &mxc_imx8mp_data },
> + { .compatible = "fsl,imx8ulp-isi", .data = &mxc_imx8ulp_data },
Bindings go before users.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string
2024-10-14 7:30 ` Krzysztof Kozlowski
@ 2024-10-14 8:27 ` G.N. Zhou (OSS)
2024-10-14 8:49 ` Krzysztof Kozlowski
0 siblings, 1 reply; 10+ messages in thread
From: G.N. Zhou (OSS) @ 2024-10-14 8:27 UTC (permalink / raw)
To: Krzysztof Kozlowski, G.N. Zhou (OSS)
Cc: linux-media@vger.kernel.org, Laurent Pinchart, jacopo@jmondi.org,
mchehab@kernel.org, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, shawnguo@kernel.org, s.hauer@pengutronix.de,
kernel@pengutronix.d, festevam@gmail.com,
devicetree@vger.kernel.org, imx@lists.linux.dev,
linux-kernel@vger.kernel.org
Hi Krzsztof,
Thanks for your replying.
> -----Original Message-----
> From: Krzysztof Kozlowski <krzk@kernel.org>
> Sent: Monday, October 14, 2024 3:31 PM
> To: G.N. Zhou (OSS) <guoniu.zhou@oss.nxp.com>
> Cc: linux-media@vger.kernel.org; Laurent Pinchart
> <laurent.pinchart@ideasonboard.com>; jacopo@jmondi.org;
> mchehab@kernel.org; robh@kernel.org; krzk+dt@kernel.org;
> conor+dt@kernel.org; shawnguo@kernel.org; s.hauer@pengutronix.de;
> kernel@pengutronix.d; festevam@gmail.com; devicetree@vger.kernel.org;
> imx@lists.linux.dev; linux-kernel@vger.kernel.org
> Subject: Re: [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI
> compatible string
>
> On Sat, Oct 12, 2024 at 04:47:35PM +0800, guoniu.zhou@oss.nxp.com wrote:
> > From: "Guoniu.zhou" <guoniu.zhou@nxp.com>
>
> Are you sure your name includes the dot? Or you just use login as full name?
Do you mean the dot in "Guoniu.zhou". If yes, it's not a part of my but to distinguish family name and given name.
>
> >
> > Add the compatible string support for i.MX8ULP ISI.
> >
> > Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com>
> > ---
> > Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml | 2 ++
> > 1 file changed, 2 insertions(+)
>
> Best regards,
> Krzysztof
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string
2024-10-14 8:27 ` G.N. Zhou (OSS)
@ 2024-10-14 8:49 ` Krzysztof Kozlowski
2024-10-14 9:06 ` G.N. Zhou (OSS)
0 siblings, 1 reply; 10+ messages in thread
From: Krzysztof Kozlowski @ 2024-10-14 8:49 UTC (permalink / raw)
To: G.N. Zhou (OSS)
Cc: linux-media@vger.kernel.org, Laurent Pinchart, jacopo@jmondi.org,
mchehab@kernel.org, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, shawnguo@kernel.org, s.hauer@pengutronix.de,
kernel@pengutronix.d, festevam@gmail.com,
devicetree@vger.kernel.org, imx@lists.linux.dev,
linux-kernel@vger.kernel.org
On 14/10/2024 10:27, G.N. Zhou (OSS) wrote:
> Hi Krzsztof,
>
> Thanks for your replying.
>
>> -----Original Message-----
>> From: Krzysztof Kozlowski <krzk@kernel.org>
>> Sent: Monday, October 14, 2024 3:31 PM
>> To: G.N. Zhou (OSS) <guoniu.zhou@oss.nxp.com>
>> Cc: linux-media@vger.kernel.org; Laurent Pinchart
>> <laurent.pinchart@ideasonboard.com>; jacopo@jmondi.org;
>> mchehab@kernel.org; robh@kernel.org; krzk+dt@kernel.org;
>> conor+dt@kernel.org; shawnguo@kernel.org; s.hauer@pengutronix.de;
>> kernel@pengutronix.d; festevam@gmail.com; devicetree@vger.kernel.org;
>> imx@lists.linux.dev; linux-kernel@vger.kernel.org
>> Subject: Re: [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI
>> compatible string
>>
>> On Sat, Oct 12, 2024 at 04:47:35PM +0800, guoniu.zhou@oss.nxp.com wrote:
>>> From: "Guoniu.zhou" <guoniu.zhou@nxp.com>
>>
>> Are you sure your name includes the dot? Or you just use login as full name?
>
> Do you mean the dot in "Guoniu.zhou". If yes, it's not a part of my but to distinguish family name and given name.
I am not familiar with rules of transliteration/translation of your
family name into English, however I think usually a space is used to
distinguish the family and given name, e.g. "Guoniu Zhou"
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string
2024-10-14 8:49 ` Krzysztof Kozlowski
@ 2024-10-14 9:06 ` G.N. Zhou (OSS)
0 siblings, 0 replies; 10+ messages in thread
From: G.N. Zhou (OSS) @ 2024-10-14 9:06 UTC (permalink / raw)
To: Krzysztof Kozlowski, G.N. Zhou (OSS)
Cc: linux-media@vger.kernel.org, Laurent Pinchart, jacopo@jmondi.org,
mchehab@kernel.org, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, shawnguo@kernel.org, s.hauer@pengutronix.de,
kernel@pengutronix.d, festevam@gmail.com,
devicetree@vger.kernel.org, imx@lists.linux.dev,
linux-kernel@vger.kernel.org
Hi Krzysztof,
> -----Original Message-----
> From: Krzysztof Kozlowski <krzk@kernel.org>
> Sent: Monday, October 14, 2024 4:50 PM
> To: G.N. Zhou (OSS) <guoniu.zhou@oss.nxp.com>
> Cc: linux-media@vger.kernel.org; Laurent Pinchart
> <laurent.pinchart@ideasonboard.com>; jacopo@jmondi.org;
> mchehab@kernel.org; robh@kernel.org; krzk+dt@kernel.org;
> conor+dt@kernel.org; shawnguo@kernel.org; s.hauer@pengutronix.de;
> kernel@pengutronix.d; festevam@gmail.com; devicetree@vger.kernel.org;
> imx@lists.linux.dev; linux-kernel@vger.kernel.org
> Subject: Re: [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI
> compatible string
>
> On 14/10/2024 10:27, G.N. Zhou (OSS) wrote:
> > Hi Krzsztof,
> >
> > Thanks for your replying.
> >
> >> -----Original Message-----
> >> From: Krzysztof Kozlowski <krzk@kernel.org>
> >> Sent: Monday, October 14, 2024 3:31 PM
> >> To: G.N. Zhou (OSS) <guoniu.zhou@oss.nxp.com>
> >> Cc: linux-media@vger.kernel.org; Laurent Pinchart
> >> <laurent.pinchart@ideasonboard.com>; jacopo@jmondi.org;
> >> mchehab@kernel.org; robh@kernel.org; krzk+dt@kernel.org;
> >> conor+dt@kernel.org; shawnguo@kernel.org; s.hauer@pengutronix.de;
> >> kernel@pengutronix.d; festevam@gmail.com; devicetree@vger.kernel.org;
> >> imx@lists.linux.dev; linux-kernel@vger.kernel.org
> >> Subject: Re: [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add
> >> i.MX8ULP ISI compatible string
> >>
> >> On Sat, Oct 12, 2024 at 04:47:35PM +0800, guoniu.zhou@oss.nxp.com
> wrote:
> >>> From: "Guoniu.zhou" <guoniu.zhou@nxp.com>
> >>
> >> Are you sure your name includes the dot? Or you just use login as full name?
> >
> > Do you mean the dot in "Guoniu.zhou". If yes, it's not a part of my but to
> distinguish family name and given name.
>
> I am not familiar with rules of transliteration/translation of your family name
> into English, however I think usually a space is used to distinguish the family
> and given name, e.g. "Guoniu Zhou"
Thanks for your suggestion and I totally agreed with you. Let me change it in any other version.
>
>
>
>
> Best regards,
> Krzysztof
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-10-14 9:06 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-12 8:47 [PATCH v2 0/2] media: nxp: imx8-isi: Add i.MX8ULP support guoniu.zhou
2024-10-12 8:47 ` [PATCH v2 1/2] " guoniu.zhou
2024-10-13 16:40 ` Laurent Pinchart
2024-10-14 7:30 ` Krzysztof Kozlowski
2024-10-12 8:47 ` [PATCH v2 2/2] dt-bindings: media: nxp,imx8-isi: Add i.MX8ULP ISI compatible string guoniu.zhou
2024-10-13 16:24 ` Laurent Pinchart
2024-10-14 7:30 ` Krzysztof Kozlowski
2024-10-14 8:27 ` G.N. Zhou (OSS)
2024-10-14 8:49 ` Krzysztof Kozlowski
2024-10-14 9:06 ` G.N. Zhou (OSS)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).