From: Stephen Boyd <sboyd@kernel.org>
To: Alexandre Torgue <alexandre.torgue@foss.st.com>,
Conor Dooley <conor+dt@kernel.org>,
Gabriel Fernandez <gabriel.fernandez@foss.st.com>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
Michael Turquette <mturquette@baylibre.com>,
Philipp Zabel <p.zabel@pengutronix.de>,
Rob Herring <robh+dt@kernel.org>
Cc: linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v6 4/5] clk: stm32: introduce clocks for STM32MP257 platform
Date: Sun, 17 Dec 2023 15:52:17 -0800 [thread overview]
Message-ID: <e8124f2cad7afbb4e9fbd777dda992f4.sboyd@kernel.org> (raw)
In-Reply-To: <20231208143700.354785-5-gabriel.fernandez@foss.st.com>
Quoting gabriel.fernandez@foss.st.com (2023-12-08 06:36:59)
> diff --git a/drivers/clk/stm32/clk-stm32mp25.c b/drivers/clk/stm32/clk-stm32mp25.c
> new file mode 100644
> index 000000000000..36321fd6142e
> --- /dev/null
> +++ b/drivers/clk/stm32/clk-stm32mp25.c
> @@ -0,0 +1,1125 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * Copyright (C) STMicroelectronics 2023 - All Rights Reserved
> + * Author: Gabriel Fernandez <gabriel.fernandez@foss.st.com> for STMicroelectronics.
> + */
> +
> +#include <linux/clk.h>
> +#include <linux/clk-provider.h>
> +#include <linux/delay.h>
Is this include used?
> +#include <linux/device.h>
> +#include <linux/err.h>
> +#include <linux/io.h>
> +#include <linux/module.h>
> +#include <linux/of.h>
> +#include <linux/of_address.h>
> +#include <linux/platform_device.h>
> +#include <linux/slab.h>
> +#include <linux/spinlock.h>
Is this include used?
> +
> +#include "clk-stm32-core.h"
> +#include "reset-stm32.h"
> +
> +#include <dt-bindings/clock/st,stm32mp25-rcc.h>
> +#include <dt-bindings/reset/st,stm32mp25-rcc.h>
> +
> +#include "stm32mp25_rcc.h"
> +
> +static const char * const adc12_src[] = {
> + "ck_flexgen_46", "ck_icn_ls_mcu"
Can we please migrate to struct clk_parent_data?
> +};
> +
> +static const char * const adc3_src[] = {
> + "ck_flexgen_47", "ck_icn_ls_mcu", "ck_flexgen_46"
> +};
> +
> +static const char * const usb2phy1_src[] = {
> + "ck_flexgen_57", "hse_div2_ck"
> +};
[...]
> + GATE_TIM4,
> + GATE_TIM5,
> + GATE_TIM6,
> + GATE_TIM7,
> + GATE_TIM8,
> + GATE_UART4,
> + GATE_UART5,
> + GATE_UART7,
> + GATE_UART8,
> + GATE_UART9,
> + GATE_USART1,
> + GATE_USART2,
> + GATE_USART3,
> + GATE_USART6,
> + GATE_USB2,
> + GATE_USB2PHY1,
> + GATE_USB2PHY2,
> + GATE_USB3DR,
> + GATE_USB3PCIEPHY,
> + GATE_USBTC,
> + GATE_VDEC,
> + GATE_VENC,
> + GATE_VREF,
> + GATE_WWDG1,
> + GATE_WWDG2,
> + GATE_NB
> +};
> +
> +#define GATE_CFG(id, _offset, _bit_idx, _offset_clr)\
> + [id] = {\
Please move these slashes out and align them.
> + .offset = (_offset),\
> + .bit_idx = (_bit_idx),\
> + .set_clr = (_offset_clr),\
> + }
> +
> +static const struct stm32_gate_cfg stm32mp25_gates[GATE_NB] = {
> + GATE_CFG(GATE_ADC12, RCC_ADC12CFGR, 1, 0),
> + GATE_CFG(GATE_ADC3, RCC_ADC3CFGR, 1, 0),
> + GATE_CFG(GATE_ADF1, RCC_ADF1CFGR, 1, 0),
> + GATE_CFG(GATE_CCI, RCC_CCICFGR, 1, 0),
> + GATE_CFG(GATE_CRC, RCC_CRCCFGR, 1, 0),
> + GATE_CFG(GATE_CRYP1, RCC_CRYP1CFGR, 1, 0),
[....]
> +
> +static struct clk_stm32_clock_data stm32mp25_clock_data = {
> + .gate_cpt = stm32mp25_cpt_gate,
> + .gates = stm32mp25_gates,
> + .muxes = stm32mp25_muxes,
> +};
> +
> +static struct clk_stm32_reset_data stm32mp25_reset_data = {
> + .reset_lines = stm32mp25_reset_cfg,
> + .nr_lines = ARRAY_SIZE(stm32mp25_reset_cfg),
> +};
> +
> +static struct stm32_rcc_match_data stm32mp25_data = {
const
> + .tab_clocks = stm32mp25_clock_cfg,
> + .num_clocks = ARRAY_SIZE(stm32mp25_clock_cfg),
> + .maxbinding = STM32MP25_LAST_CLK,
> + .clock_data = &stm32mp25_clock_data,
> + .reset_data = &stm32mp25_reset_data,
> +};
> +
> +static const struct of_device_id stm32mp25_match_data[] = {
> + {
> + .compatible = "st,stm32mp25-rcc",
> + .data = &stm32mp25_data,
> + },
> + { }
> +};
> +MODULE_DEVICE_TABLE(of, stm32mp25_match_data);
> +
> +static int stm32mp25_rcc_init(struct device *dev)
Please inline this function in the one call site.
> +{
> + void __iomem *base;
> + int ret;
> +
> + base = of_iomap(dev_of_node(dev), 0);
Use platform device APIs instead of OF specific ones.
> + if (!base) {
> + dev_err(dev, "%pOFn: unable to map resource", dev_of_node(dev));
Missing newline.
> + ret = -ENOMEM;
> + goto out;
> + }
> +
> + ret = stm32_rcc_init(dev, stm32mp25_match_data, base);
> +
> +out:
> + if (ret) {
> + if (base)
> + iounmap(base);
> +
> + of_node_put(dev_of_node(dev));
When did we get the node?
> + }
> +
> + return ret;
> +}
> +
> +static int get_clock_deps(struct device *dev)
> +{
> + static const char * const clock_deps_name[] = {
> + "hsi", "hse", "msi", "lsi", "lse",
> + };
> + size_t deps_size = sizeof(struct clk *) * ARRAY_SIZE(clock_deps_name);
> + struct clk **clk_deps;
> + int i;
> +
> + clk_deps = devm_kzalloc(dev, deps_size, GFP_KERNEL);
> + if (!clk_deps)
> + return -ENOMEM;
> +
> + for (i = 0; i < ARRAY_SIZE(clock_deps_name); i++) {
> + struct clk *clk;
> +
> + clk = of_clk_get_by_name(dev_of_node(dev), clock_deps_name[i]);
> +
> + if (IS_ERR(clk)) {
> + if (PTR_ERR(clk) != -EINVAL && PTR_ERR(clk) != -ENOENT)
> + return PTR_ERR(clk);
> + } else {
> + /* Device gets a reference count on the clock */
> + clk_deps[i] = devm_clk_get(dev, __clk_get_name(clk));
Is something using this clk_deps array?
> + clk_put(clk);
> + }
> + }
> +
> + return 0;
> +}
> +
> +static int stm32mp25_rcc_clocks_probe(struct platform_device *pdev)
> +{
> + struct device *dev = &pdev->dev;
> + int ret = get_clock_deps(dev);
> +
> + if (!ret)
> + ret = stm32mp25_rcc_init(dev);
> +
> + return ret;
> +}
> +
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2023-12-17 23:52 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-08 14:36 [PATCH v6 0/5] Introduce STM32MP257 clock driver gabriel.fernandez
2023-12-08 14:36 ` [PATCH v6 1/5] clk: stm32mp1: move stm32mp1 clock driver into stm32 directory gabriel.fernandez
2023-12-17 23:53 ` Stephen Boyd
2023-12-08 14:36 ` [PATCH v6 2/5] clk: stm32mp1: use stm32mp13 reset driver gabriel.fernandez
2023-12-17 23:53 ` Stephen Boyd
2023-12-08 14:36 ` [PATCH v6 3/5] dt-bindings: stm32: add clocks and reset binding for stm32mp25 platform gabriel.fernandez
2023-12-17 23:54 ` Stephen Boyd
2023-12-08 14:36 ` [PATCH v6 4/5] clk: stm32: introduce clocks for STM32MP257 platform gabriel.fernandez
2023-12-17 23:52 ` Stephen Boyd [this message]
2023-12-08 14:37 ` [PATCH v6 5/5] arm64: dts: st: add rcc support in stm32mp251 gabriel.fernandez
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=e8124f2cad7afbb4e9fbd777dda992f4.sboyd@kernel.org \
--to=sboyd@kernel.org \
--cc=alexandre.torgue@foss.st.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=gabriel.fernandez@foss.st.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=mturquette@baylibre.com \
--cc=p.zabel@pengutronix.de \
--cc=robh+dt@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 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).