2021-07-23 13:00:42

by Andy Shevchenko

[permalink] [raw]
Subject: [PATCH v2 1/1] serial: max310x: Use clock-names property matching to recognize EXTCLK

Dennis reported that on ACPI-based systems the clock frequency
isn't enough to configure device properly. We have to respect
the clock source as well. To achieve this match the clock-names
property against "osc" to recognize external clock connection.
On DT-based system this doesn't change anything.

Reported-and-tested-by: Dennis Giaya <[email protected]>
Signed-off-by: Andy Shevchenko <[email protected]>
---
v2: added Tested-by tag (Dennis), inverted comparison to leave original flow
drivers/tty/serial/max310x.c | 15 +++++----------
1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/drivers/tty/serial/max310x.c b/drivers/tty/serial/max310x.c
index ef11860cd69e..3df0788ddeb0 100644
--- a/drivers/tty/serial/max310x.c
+++ b/drivers/tty/serial/max310x.c
@@ -1271,18 +1271,13 @@ static int max310x_probe(struct device *dev, const struct max310x_devtype *devty
/* Always ask for fixed clock rate from a property. */
device_property_read_u32(dev, "clock-frequency", &uartclk);

- s->clk = devm_clk_get_optional(dev, "osc");
+ xtal = device_property_match_string(dev, "clock-names", "osc") < 0;
+ if (xtal)
+ s->clk = devm_clk_get_optional(dev, "xtal");
+ else
+ s->clk = devm_clk_get_optional(dev, "osc");
if (IS_ERR(s->clk))
return PTR_ERR(s->clk);
- if (s->clk) {
- xtal = false;
- } else {
- s->clk = devm_clk_get_optional(dev, "xtal");
- if (IS_ERR(s->clk))
- return PTR_ERR(s->clk);
-
- xtal = true;
- }

ret = clk_prepare_enable(s->clk);
if (ret)
--
2.30.2


2021-07-28 14:54:49

by Dennis Giaya

[permalink] [raw]
Subject: Re: [PATCH v2 1/1] serial: max310x: Use clock-names property matching to recognize EXTCLK

> v2: added Tested-by tag (Dennis), inverted comparison to leave
> original flow

I've tested v2 with the inverted comparison and it works under the same
test conditions as v1.

Best,Dennis


Attachments:
smime.p7s (5.49 kB)

2021-07-28 15:22:03

by Andy Shevchenko

[permalink] [raw]
Subject: Re: [PATCH v2 1/1] serial: max310x: Use clock-names property matching to recognize EXTCLK

On Wed, Jul 28, 2021 at 02:52:17PM +0000, Dennis Giaya wrote:
> > v2: added Tested-by tag (Dennis), inverted comparison to leave
> > original flow
>
> I've tested v2 with the inverted comparison and it works under the same
> test conditions as v1.

Thanks! It's pending for v5.15-rc1.

--
With Best Regards,
Andy Shevchenko