From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: Svyatoslav Ryhel <clamor95@gmail.com>
Cc: Chanwoo Choi <cw00.choi@samsung.com>,
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
Alessandro Zummo <a.zummo@towertech.it>,
linux-kernel@vger.kernel.org, linux-rtc@vger.kernel.org
Subject: Re: [PATCH v1] max77663-rtc: pass rtc address from device tree node if exists
Date: Wed, 8 Mar 2023 09:44:36 +0100 [thread overview]
Message-ID: <202303080844360ced8b82@mail.local> (raw)
In-Reply-To: <20230308083759.11692-1-clamor95@gmail.com>
Hello,
the subject is not correct, please use the subsystem style
On 08/03/2023 10:37:59+0200, Svyatoslav Ryhel wrote:
> MAX77663 PMIC can have RTC on both 0x63 i2c address (like grouper)
> which is main address but on some devices RTC is located on 0x48
> i2c address (like p880 and p895 from LG). Lets add property to be
> able to use alternative address if needed without breaking existing
> bindings.
>
> Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
> ---
> drivers/rtc/rtc-max77686.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/rtc/rtc-max77686.c b/drivers/rtc/rtc-max77686.c
> index b0250d91fb00..218177375531 100644
> --- a/drivers/rtc/rtc-max77686.c
> +++ b/drivers/rtc/rtc-max77686.c
> @@ -691,6 +691,7 @@ static int max77686_init_rtc_regmap(struct max77686_rtc_info *info)
> {
> struct device *parent = info->dev->parent;
> struct i2c_client *parent_i2c = to_i2c_client(parent);
> + int rtc_i2c_addr;
> int ret;
>
> if (info->drv_data->rtc_irq_from_platform) {
> @@ -714,8 +715,13 @@ static int max77686_init_rtc_regmap(struct max77686_rtc_info *info)
> goto add_rtc_irq;
> }
>
> + ret = device_property_read_u32(parent, "maxim,rtc-i2c-address",
> + &rtc_i2c_addr);
This property needs to be documented
> + if (ret)
> + rtc_i2c_addr = info->drv_data->rtc_i2c_addr;
> +
> info->rtc = devm_i2c_new_dummy_device(info->dev, parent_i2c->adapter,
> - info->drv_data->rtc_i2c_addr);
> + rtc_i2c_addr);
> if (IS_ERR(info->rtc)) {
> dev_err(info->dev, "Failed to allocate I2C device for RTC\n");
> return PTR_ERR(info->rtc);
> --
> 2.37.2
>
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2023-03-08 8:44 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-08 8:37 [PATCH v1] max77663-rtc: pass rtc address from device tree node if exists Svyatoslav Ryhel
2023-03-08 8:44 ` Alexandre Belloni [this message]
2023-03-08 8:46 ` Svyatoslav Ryhel
2023-03-08 8:49 ` Krzysztof Kozlowski
2023-03-08 8:51 ` Svyatoslav Ryhel
2023-03-08 8:55 ` Krzysztof Kozlowski
2023-03-08 8:54 ` Krzysztof Kozlowski
2023-03-08 8:58 ` Svyatoslav Ryhel
2023-03-08 9:11 ` Krzysztof Kozlowski
2023-03-08 9:14 ` Krzysztof Kozlowski
2023-03-08 9:42 ` Alexandre Belloni
2023-03-08 10:49 ` Krzysztof Kozlowski
2023-03-08 9:29 ` Svyatoslav Ryhel
2023-03-08 10:46 ` Krzysztof Kozlowski
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=202303080844360ced8b82@mail.local \
--to=alexandre.belloni@bootlin.com \
--cc=a.zummo@towertech.it \
--cc=clamor95@gmail.com \
--cc=cw00.choi@samsung.com \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rtc@vger.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.