Re: [PATCH 4/4] rtc: imx-sm-bbm: Support multiple RTCs
From: Sudeep Holla <hidden>
Date: 2025-02-11 17:01:18
Also in:
arm-scmi, imx, linux-rtc, lkml
From: Sudeep Holla <hidden>
Date: 2025-02-11 17:01:18
Also in:
arm-scmi, imx, linux-rtc, lkml
On Mon, Jan 20, 2025 at 10:25:36AM +0800, Peng Fan (OSS) wrote:
From: Peng Fan <peng.fan@nxp.com> i.MX95 EVK has two RTCs exported by SCMI BBM protocol. Current driver only enables the 1st RTC inside BBNSM module, leaving the board RTC not used by Linux. To use the 2nd RTC, use 'bbm_info' to get the number of RTCs, register them all, and set 'bbnsm' as private info for rtc device to know which RTC it is when using rtc_class_ops to access rtc device. Signed-off-by: Peng Fan <peng.fan@nxp.com> --- drivers/rtc/rtc-imx-sm-bbm.c | 69 +++++++++++++++++++++++++++----------------- 1 file changed, 43 insertions(+), 26 deletions(-)diff --git a/drivers/rtc/rtc-imx-sm-bbm.c b/drivers/rtc/rtc-imx-sm-bbm.c index daa472be7c80697aa3cd3432eccef0c877e4c378..a29b30555d0c0581ecaa8b79760209dc780d2f0e 100644 --- a/drivers/rtc/rtc-imx-sm-bbm.c +++ b/drivers/rtc/rtc-imx-sm-bbm.c@@ -15,16 +15,18 @@ struct scmi_imx_bbm { struct rtc_device *rtc_dev; struct scmi_protocol_handle *ph; struct notifier_block nb; + u32 bbm_rtc_id;
Is it not same as rtc_dev->id ? Why do you need a copy in this wrapper/ container structure ? -- Regards, Sudeep