From: <Durai.ManickamKR@microchip.com>
To: <linux-i3c@lists.infradead.org>, <devicetree@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <alexandre.belloni@bootlin.com>,
<Frank.Li@nxp.com>, <robh@kernel.org>, <krzk+dt@kernel.org>,
<conor+dt@kernel.org>, <Balamanikandan.Gunasundar@microchip.com>,
<Nicolas.Ferre@microchip.com>
Subject: Re: [PATCH 1/4] clk: at91: sama7d65: add peripheral clock for I3C
Date: Tue, 9 Sep 2025 11:19:08 +0000 [thread overview]
Message-ID: <bde8c4e5-6116-40ae-8bd3-e76d5954c461@microchip.com> (raw)
In-Reply-To: <20250909111333.170016-2-durai.manickamkr@microchip.com>
On 09/09/25 16:43, Durai Manickam KR wrote:
During cherry-pick wrongly added 3 lines instead of i3c clock changes
alone. I will resend this patch in v2 along with the other comments
which is yet to be received, with only changes specific to i3c clock.
> Add peripheral clock description for I3C.
>
> Signed-off-by: Durai Manickam KR <durai.manickamkr@microchip.com>
> ---
> drivers/clk/at91/sama7d65.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/clk/at91/sama7d65.c b/drivers/clk/at91/sama7d65.c
> index a5d40df8b2f2..84c6bbe20873 100644
> --- a/drivers/clk/at91/sama7d65.c
> +++ b/drivers/clk/at91/sama7d65.c
> @@ -671,8 +671,9 @@ static struct {
> { .n = "udphsa_clk", .p = PCK_PARENT_HW_MCK5, .id = 99, },
> { .n = "udphsb_clk", .p = PCK_PARENT_HW_MCK5, .id = 100, },
> { .n = "uhphs_clk", .p = PCK_PARENT_HW_MCK5, .id = 101, },
> - { .n = "dsi_clk", .p = PCK_PARENT_HW_MCK3, .id = 103, },
> - { .n = "lvdsc_clk", .p = PCK_PARENT_HW_MCK3, .id = 104, },
> + { .n = "dsi_clk", .p = PCK_PARENT_HW_MCK3, .id = 103, },
> + { .n = "lvdsc_clk", .p = PCK_PARENT_HW_MCK3, .id = 104, },
> + { .n = "i3cc_clk", .p = PCK_PARENT_HW_MCK8, .id = 105, },
> };
>
> /*
--
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c
WARNING: multiple messages have this Message-ID (diff)
From: <Durai.ManickamKR@microchip.com>
To: <linux-i3c@lists.infradead.org>, <devicetree@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <alexandre.belloni@bootlin.com>,
<Frank.Li@nxp.com>, <robh@kernel.org>, <krzk+dt@kernel.org>,
<conor+dt@kernel.org>, <Balamanikandan.Gunasundar@microchip.com>,
<Nicolas.Ferre@microchip.com>
Subject: Re: [PATCH 1/4] clk: at91: sama7d65: add peripheral clock for I3C
Date: Tue, 9 Sep 2025 11:19:08 +0000 [thread overview]
Message-ID: <bde8c4e5-6116-40ae-8bd3-e76d5954c461@microchip.com> (raw)
In-Reply-To: <20250909111333.170016-2-durai.manickamkr@microchip.com>
On 09/09/25 16:43, Durai Manickam KR wrote:
During cherry-pick wrongly added 3 lines instead of i3c clock changes
alone. I will resend this patch in v2 along with the other comments
which is yet to be received, with only changes specific to i3c clock.
> Add peripheral clock description for I3C.
>
> Signed-off-by: Durai Manickam KR <durai.manickamkr@microchip.com>
> ---
> drivers/clk/at91/sama7d65.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/clk/at91/sama7d65.c b/drivers/clk/at91/sama7d65.c
> index a5d40df8b2f2..84c6bbe20873 100644
> --- a/drivers/clk/at91/sama7d65.c
> +++ b/drivers/clk/at91/sama7d65.c
> @@ -671,8 +671,9 @@ static struct {
> { .n = "udphsa_clk", .p = PCK_PARENT_HW_MCK5, .id = 99, },
> { .n = "udphsb_clk", .p = PCK_PARENT_HW_MCK5, .id = 100, },
> { .n = "uhphs_clk", .p = PCK_PARENT_HW_MCK5, .id = 101, },
> - { .n = "dsi_clk", .p = PCK_PARENT_HW_MCK3, .id = 103, },
> - { .n = "lvdsc_clk", .p = PCK_PARENT_HW_MCK3, .id = 104, },
> + { .n = "dsi_clk", .p = PCK_PARENT_HW_MCK3, .id = 103, },
> + { .n = "lvdsc_clk", .p = PCK_PARENT_HW_MCK3, .id = 104, },
> + { .n = "i3cc_clk", .p = PCK_PARENT_HW_MCK8, .id = 105, },
> };
>
> /*
next prev parent reply other threads:[~2025-09-09 15:43 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-09 11:13 [PATCH 0/4] Add Microchip I3C controller Durai Manickam KR
2025-09-09 11:13 ` Durai Manickam KR
2025-09-09 11:13 ` [PATCH 1/4] clk: at91: sama7d65: add peripheral clock for I3C Durai Manickam KR
2025-09-09 11:13 ` Durai Manickam KR
2025-09-09 11:19 ` Durai.ManickamKR [this message]
2025-09-09 11:19 ` Durai.ManickamKR
2025-09-09 11:13 ` [PATCH 2/4] i3c: master: add Microchip SAMA7D65 I3C HCI master driver Durai Manickam KR
2025-09-09 11:13 ` Durai Manickam KR
2025-09-09 21:18 ` Frank Li
2025-09-09 21:18 ` Frank Li
2025-09-10 6:12 ` Durai.ManickamKR
2025-09-10 6:12 ` Durai.ManickamKR
2025-09-10 6:53 ` Wolfram Sang
2025-09-10 6:53 ` Wolfram Sang
2025-09-10 9:01 ` Jarkko Nikula
2025-09-10 9:01 ` Jarkko Nikula
2025-09-18 6:40 ` Durai.ManickamKR
2025-09-18 6:40 ` Durai.ManickamKR
2025-09-10 16:16 ` Frank Li
2025-09-10 16:16 ` Frank Li
2025-09-10 5:57 ` kernel test robot
2025-09-10 5:57 ` kernel test robot
2025-09-10 6:19 ` Durai.ManickamKR
2025-09-10 6:19 ` Durai.ManickamKR
2025-09-09 11:13 ` [PATCH 3/4] ARM: configs: at91: sama7: Add SAMA7D65 I3C HCI master Durai Manickam KR
2025-09-09 11:13 ` Durai Manickam KR
2025-09-09 11:13 ` [PATCH 4/4] ARM: dts: microchip: add I3C controller Durai Manickam KR
2025-09-09 11:13 ` Durai Manickam KR
2025-09-09 19:46 ` [PATCH 0/4] Add Microchip " Conor Dooley
2025-09-09 19:46 ` Conor Dooley
2025-09-10 6:14 ` Durai.ManickamKR
2025-09-10 6:14 ` Durai.ManickamKR
2025-09-10 17:54 ` Conor Dooley
2025-09-10 17:54 ` Conor Dooley
-- strict thread matches above, loose matches on Subject: below --
2025-09-18 9:54 [PATCH 0/4] Add microchip sama7d65 SoC I3C support Durai Manickam KR
2025-09-18 9:54 ` [PATCH 1/4] clk: at91: sama7d65: add peripheral clock for I3C Durai Manickam KR
2025-09-18 9:54 ` Durai Manickam KR
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=bde8c4e5-6116-40ae-8bd3-e76d5954c461@microchip.com \
--to=durai.manickamkr@microchip.com \
--cc=Balamanikandan.Gunasundar@microchip.com \
--cc=Frank.Li@nxp.com \
--cc=Nicolas.Ferre@microchip.com \
--cc=alexandre.belloni@bootlin.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-i3c@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh@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.