LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Sam Protsenko <semen.protsenko@linaro.org> To: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Cc: "Sylwester Nawrocki" <s.nawrocki@samsung.com>, "Chanwoo Choi" <cw00.choi@samsung.com>, "Linus Walleij" <linus.walleij@linaro.org>, "Tomasz Figa" <tomasz.figa@gmail.com>, "Paweł Chmiel" <pawel.mikolaj.chmiel@gmail.com>, "Marc Zyngier" <maz@kernel.org>, "Rob Herring" <robh+dt@kernel.org>, "Stephen Boyd" <sboyd@kernel.org>, "Michael Turquette" <mturquette@baylibre.com>, "Jiri Slaby" <jirislaby@kernel.org>, "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>, "Charles Keepax" <ckeepax@opensource.wolfsonmicro.com>, "Ryu Euiyoul" <ryu.real@samsung.com>, "Tom Gall" <tom.gall@linaro.org>, "Sumit Semwal" <sumit.semwal@linaro.org>, "John Stultz" <john.stultz@linaro.org>, "Amit Pundir" <amit.pundir@linaro.org>, devicetree <devicetree@vger.kernel.org>, "linux-arm Mailing List" <linux-arm-kernel@lists.infradead.org>, linux-clk <linux-clk@vger.kernel.org>, "open list:GPIO SUBSYSTEM" <linux-gpio@vger.kernel.org>, "Linux Kernel Mailing List" <linux-kernel@vger.kernel.org>, "Linux Samsung SOC" <linux-samsung-soc@vger.kernel.org>, "open list:SERIAL DRIVERS" <linux-serial@vger.kernel.org> Subject: Re: [PATCH v2 7/8] clk: samsung: Add Exynos850 clock driver stub Date: Mon, 9 Aug 2021 21:51:48 +0300 [thread overview] Message-ID: <CAPLW+4=yK-dfWjKjLEOKL2o2sG1eyqSNqgVCnQNYvbUHo+Om4w@mail.gmail.com> (raw) In-Reply-To: <7110b1e2-1aee-6ddf-803f-ee392e494f2d@canonical.com> On Mon, 9 Aug 2021 at 13:55, Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> wrote: > > On 06/08/2021 17:21, Sam Protsenko wrote: > > For now it's just a stub driver to make the serial driver work. Later it > > will be implemented properly. This driver doesn't really change clocks, > > only registers the UART clock as a fixed-rate clock. Without this clock > > driver the UART driver won't work, as it's trying to obtain "uart" clock > > and fails if it's not able to. > > You know that as temporary solution you can add necessary clocks > directly in your DTS as fixed-rate-clocks? Effect would be quite similar > to the one here for UART driver but instead adding some temporary code > you would add temporary DTS nodes and references. > > I am fine with this approach although the binding (if ever defined...) > would need to be marked as experimental. > Let's keep this driver then. My next step would be implementing the proper clk driver, so this review would be a good starting point for me. I will, of course, address your other comments. > > > > In order to get a functional serial console we have to implement that > > minimal clock driver with "uart" clock. It's not necessary to actually > > configure clocks, as those are already configured in bootloader, so > > kernel can rely on that for now. > > > > Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org> > > --- > > Changes in v2: > > - Used hard coded clock indexes, as clock bindings were removed; will > > add clock bindings back (reimplemented) once proper clock driver is > > ready > > - Removed .data = 0 for exynos850-oscclk, as it's in BSS section > > - Removed comma for terminator {} > > - Made exynos850_clk_init() static > > - Removed checking np for NULL, as it's already done in of_iomap() > > > > drivers/clk/samsung/Makefile | 1 + > > drivers/clk/samsung/clk-exynos850.c | 64 +++++++++++++++++++++++++++++ > > 2 files changed, 65 insertions(+) > > create mode 100644 drivers/clk/samsung/clk-exynos850.c > > > > diff --git a/drivers/clk/samsung/Makefile b/drivers/clk/samsung/Makefile > > index 028b2e27a37e..c46cf11e4d0b 100644 > > --- a/drivers/clk/samsung/Makefile > > +++ b/drivers/clk/samsung/Makefile > > @@ -17,6 +17,7 @@ obj-$(CONFIG_EXYNOS_ARM64_COMMON_CLK) += clk-exynos5433.o > > obj-$(CONFIG_EXYNOS_AUDSS_CLK_CON) += clk-exynos-audss.o > > obj-$(CONFIG_EXYNOS_CLKOUT) += clk-exynos-clkout.o > > obj-$(CONFIG_EXYNOS_ARM64_COMMON_CLK) += clk-exynos7.o > > +obj-$(CONFIG_EXYNOS_ARM64_COMMON_CLK) += clk-exynos850.o > > obj-$(CONFIG_S3C2410_COMMON_CLK)+= clk-s3c2410.o > > obj-$(CONFIG_S3C2410_COMMON_DCLK)+= clk-s3c2410-dclk.o > > obj-$(CONFIG_S3C2412_COMMON_CLK)+= clk-s3c2412.o > > diff --git a/drivers/clk/samsung/clk-exynos850.c b/drivers/clk/samsung/clk-exynos850.c > > new file mode 100644 > > index 000000000000..36c7c7fe7cf0 > > --- /dev/null > > +++ b/drivers/clk/samsung/clk-exynos850.c > > @@ -0,0 +1,64 @@ > > +// SPDX-License-Identifier: GPL-2.0-only > > +/* > > + * Copyright (C) 2019 Samsung Electronics Co., Ltd. > > + * Copyright (C) 2021 Linaro Ltd. > > + * > > + * Common Clock Framework support for Exynos850 SoC. > > + */ > > + > > +#include <linux/clk.h> > > +#include <linux/clkdev.h> > > +#include <linux/clk-provider.h> > > +#include <linux/of.h> > > +#include <linux/of_address.h> > > + > > +#include "clk.h" > > + > > +/* Will be extracted to bindings header once proper clk driver is implemented */ > > +#define OSCCLK 1 > > +#define DOUT_UART 2 > > +#define CLK_NR_CLKS 3 > > + > > +/* Fixed rate clocks generated outside the SoC */ > > +static struct samsung_fixed_rate_clock exynos850_fixed_rate_ext_clks[] __initdata = { > > + FRATE(OSCCLK, "fin_pll", NULL, 0, 26000000), > > +}; > > + > > +/* > > + * Model the UART clock as a fixed-rate clock for now, to make serial driver > > + * work. This clock is already configured in the bootloader. > > + */ > > +static const struct samsung_fixed_rate_clock exynos850_peri_clks[] __initconst = { > > + FRATE(DOUT_UART, "DOUT_UART", NULL, 0, 200000000), > > +}; > > + > > +static const struct of_device_id ext_clk_match[] __initconst = { > > + { .compatible = "samsung,exynos850-oscclk" }, > > + {} > > +}; > > + > > +static void __init exynos850_clk_init(struct device_node *np) > > +{ > > + void __iomem *reg_base; > > + struct samsung_clk_provider *ctx; > > + > > + reg_base = of_iomap(np, 0); > > + if (!reg_base) > > + panic("%s: failed to map registers\n", __func__); > > + > > + ctx = samsung_clk_init(np, reg_base, CLK_NR_CLKS); > > + if (!ctx) > > + panic("%s: unable to allocate ctx\n", __func__); > > Not needed, the samsung_clk_init() panics or returns valid memory. > Done. Btw, I noticed that similar check is present in clk-exynos5433.c. > > + > > + samsung_clk_of_register_fixed_ext(ctx, > > + exynos850_fixed_rate_ext_clks, > > + ARRAY_SIZE(exynos850_fixed_rate_ext_clks), > > + ext_clk_match); > > + > > + samsung_clk_register_fixed_rate(ctx, exynos850_peri_clks, > > + ARRAY_SIZE(exynos850_peri_clks)); > > + > > + samsung_clk_of_add_provider(np, ctx); > > +} > > + > > +CLK_OF_DECLARE(exynos850_clk, "samsung,exynos850-clock", exynos850_clk_init); > > > > Best regards, > Krzysztof
next prev parent reply other threads:[~2021-08-09 18:52 UTC|newest] Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-08-06 15:21 [PATCH v2 0/8] Add minimal support for Exynos850 SoC Sam Protsenko 2021-08-06 15:21 ` [PATCH v2 1/8] dt-bindings: pinctrl: samsung: Add Exynos850 doc Sam Protsenko 2021-08-06 15:21 ` [PATCH v2 2/8] pinctrl: samsung: Add Exynos850 SoC specific data Sam Protsenko 2021-08-09 10:43 ` Krzysztof Kozlowski 2021-08-09 18:18 ` Sam Protsenko 2021-08-06 15:21 ` [PATCH v2 3/8] dt-bindings: serial: samsung: Add Exynos850 doc Sam Protsenko 2021-08-06 15:21 ` [PATCH v2 4/8] tty: serial: samsung: Init USI to keep clocks running Sam Protsenko 2021-08-09 10:45 ` Krzysztof Kozlowski 2021-08-06 15:21 ` [PATCH v2 5/8] tty: serial: samsung: Fix driver data macros style Sam Protsenko 2021-08-06 15:21 ` [PATCH v2 6/8] tty: serial: samsung: Add Exynos850 SoC data Sam Protsenko 2021-08-09 10:46 ` Krzysztof Kozlowski 2021-08-06 15:21 ` [PATCH v2 7/8] clk: samsung: Add Exynos850 clock driver stub Sam Protsenko 2021-08-09 10:55 ` Krzysztof Kozlowski 2021-08-09 18:51 ` Sam Protsenko [this message] 2021-08-09 11:22 ` Krzysztof Kozlowski 2021-08-09 19:48 ` Sam Protsenko 2021-08-10 7:55 ` Sylwester Nawrocki 2021-08-11 11:20 ` Sam Protsenko 2021-08-06 15:21 ` [PATCH v2 8/8] arm64: dts: exynos: Add Exynos850 SoC support Sam Protsenko
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='CAPLW+4=yK-dfWjKjLEOKL2o2sG1eyqSNqgVCnQNYvbUHo+Om4w@mail.gmail.com' \ --to=semen.protsenko@linaro.org \ --cc=amit.pundir@linaro.org \ --cc=ckeepax@opensource.wolfsonmicro.com \ --cc=cw00.choi@samsung.com \ --cc=devicetree@vger.kernel.org \ --cc=gregkh@linuxfoundation.org \ --cc=jirislaby@kernel.org \ --cc=john.stultz@linaro.org \ --cc=krzysztof.kozlowski@canonical.com \ --cc=linus.walleij@linaro.org \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-clk@vger.kernel.org \ --cc=linux-gpio@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-samsung-soc@vger.kernel.org \ --cc=linux-serial@vger.kernel.org \ --cc=maz@kernel.org \ --cc=mturquette@baylibre.com \ --cc=pawel.mikolaj.chmiel@gmail.com \ --cc=robh+dt@kernel.org \ --cc=ryu.real@samsung.com \ --cc=s.nawrocki@samsung.com \ --cc=sboyd@kernel.org \ --cc=sumit.semwal@linaro.org \ --cc=tom.gall@linaro.org \ --cc=tomasz.figa@gmail.com \ /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: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
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).