mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
To: Maxime Ripard <maxime@cerno.tech>
Cc: Tim Gover <tim.gover@raspberrypi.com>,
	Dave Stevenson <dave.stevenson@raspberrypi.com>,
	Stephen Boyd <sboyd@kernel.org>,
	Mike Turquette <mturquette@baylibre.com>,
	linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
	bcm-kernel-feedback-list@broadcom.com,
	linux-rpi-kernel@lists.infradead.org,
	Phil Elwell <phil@raspberrypi.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v4 25/27] clk: bcm2835: Allow custom CCF flags for the PLLs
Date: Thu, 11 Jun 2020 11:11:00 +0200	[thread overview]
Message-ID: <dd44eff2babb57cc9034e8de85162d0a1516e15f.camel@suse.de> (raw)
In-Reply-To: <abfae9fb4bfd76cd83d5ae97499b97b56b5dee58.1591860665.git-series.maxime@cerno.tech>

[-- Attachment #1: Type: text/plain, Size: 1242 bytes --]

Hi Maxime,

On Thu, 2020-06-11 at 09:32 +0200, Maxime Ripard wrote:
> While some clock types allow for each clock to specify its own custom
> flags, the PLLs can't. We will need this for the PLLB, so let's add it.
> 
> Signed-off-by: Maxime Ripard <maxime@cerno.tech>
> ---
>  drivers/clk/bcm/clk-bcm2835.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/bcm/clk-bcm2835.c b/drivers/clk/bcm/clk-bcm2835.c
> index 32f5c13be9d1..846ea68b2c73 100644
> --- a/drivers/clk/bcm/clk-bcm2835.c
> +++ b/drivers/clk/bcm/clk-bcm2835.c
> @@ -421,6 +421,7 @@ struct bcm2835_pll_data {
>  	u32 reference_enable_mask;
>  	/* Bit in CM_LOCK to indicate when the PLL has locked. */
>  	u32 lock_mask;
> +	u32 flags;
>  
>  	const struct bcm2835_pll_ana_bits *ana;
>  
> @@ -1310,7 +1311,7 @@ static struct clk_hw *bcm2835_register_pll(struct
> bcm2835_cprman *cprman,
>  	init.num_parents = 1;
>  	init.name = pll_data->name;
>  	init.ops = &bcm2835_pll_clk_ops;
> -	init.flags = CLK_IGNORE_UNUSED;
> +	init.flags = data->flags | CLK_IGNORE_UNUSED;

This should be 'pll_data->flags'.

With that fixed:

Acked-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>

Regards,
Nicolas


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

  reply	other threads:[~2020-06-11  9:11 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-11  7:31 [PATCH v4 00/27] clk: bcm: rpi: Add support for BCM2711 firmware clocks Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 01/27] dt-bindings: arm: bcm: Convert BCM2835 firmware binding to YAML Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 02/27] dt-bindings: clock: Add a binding for the RPi Firmware clocks Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 03/27] firmware: rpi: Only create clocks device if we don't have a node for it Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 04/27] clk: bcm: rpi: Allow the driver to be probed by DT Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 05/27] clk: bcm: rpi: Statically init clk_init_data Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 06/27] clk: bcm: rpi: Use clk_hw_register for pllb_arm Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 07/27] clk: bcm: rpi: Remove global pllb_arm clock pointer Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 08/27] clk: bcm: rpi: Make sure pllb_arm is removed Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 09/27] clk: bcm: rpi: Remove pllb_arm_lookup global pointer Maxime Ripard
2020-06-11  7:31 ` [PATCH v4 10/27] clk: bcm: rpi: Switch to clk_hw_register_clkdev Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 11/27] clk: bcm: rpi: Make sure the clkdev lookup is removed Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 12/27] clk: bcm: rpi: Use CCF boundaries instead of rolling our own Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 13/27] clk: bcm: rpi: Create a data structure for the clocks Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 14/27] clk: bcm: rpi: Add clock id to data Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 15/27] clk: bcm: rpi: Pass the clocks data to the firmware function Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 16/27] clk: bcm: rpi: Rename is_prepared function Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 17/27] clk: bcm: rpi: Split pllb clock hooks Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 18/27] clk: bcm: rpi: Make the PLLB registration function return a clk_hw Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 19/27] clk: bcm: rpi: Add DT provider for the clocks Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 20/27] clk: bcm: rpi: Add an enum for the firmware clocks Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 21/27] clk: bcm: rpi: Discover " Maxime Ripard
2020-06-11 11:14   ` Nicolas Saenz Julienne
2020-06-11  7:32 ` [PATCH v4 22/27] clk: bcm: rpi: Give firmware clocks a name Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 23/27] Revert "clk: bcm2835: remove pllb" Maxime Ripard
2020-06-11 11:15   ` Nicolas Saenz Julienne
2020-06-11  7:32 ` [PATCH v4 24/27] ARM: dts: bcm2711: Add firmware clocks node Maxime Ripard
2020-06-11  7:32 ` [PATCH v4 25/27] clk: bcm2835: Allow custom CCF flags for the PLLs Maxime Ripard
2020-06-11  9:11   ` Nicolas Saenz Julienne [this message]
2020-06-11  7:32 ` [PATCH v4 26/27] clk: bcm2835: Don't cache the PLLB rate Maxime Ripard
2020-06-11 11:17   ` Nicolas Saenz Julienne
2020-06-11  7:32 ` [PATCH v4 27/27] clk: bcm: rpi: Remove the quirks for the CPU clock Maxime Ripard
2020-06-11 11:18   ` Nicolas Saenz Julienne
2020-06-11 11:21 ` [PATCH v4 00/27] clk: bcm: rpi: Add support for BCM2711 firmware clocks Nicolas Saenz Julienne

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=dd44eff2babb57cc9034e8de85162d0a1516e15f.camel@suse.de \
    --to=nsaenzjulienne@suse.de \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=dave.stevenson@raspberrypi.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rpi-kernel@lists.infradead.org \
    --cc=maxime@cerno.tech \
    --cc=mturquette@baylibre.com \
    --cc=phil@raspberrypi.com \
    --cc=sboyd@kernel.org \
    --cc=tim.gover@raspberrypi.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: 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

all inboxes | Powered by JetHome®