From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: Claudiu Beznea <claudiu.beznea@microchip.com>
Cc: nicolas.ferre@microchip.com, ludovic.desroches@microchip.com,
linux@armlinux.org.uk, mturquette@baylibre.com, sboyd@kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org
Subject: Re: [PATCH 0/8] PM fixes and improvements for SAM9X60
Date: Fri, 14 Feb 2020 12:04:58 +0100 [thread overview]
Message-ID: <20200214110458.GE3578@piout.net> (raw)
In-Reply-To: <1579522208-19523-1-git-send-email-claudiu.beznea@microchip.com>
On 20/01/2020 14:10:00+0200, Claudiu Beznea wrote:
> Hi,
>
> This series adds fixes and improvements for SAM9X60 as follows:
> - fix master clock register offset in pm_suspend.S
> - add support for disable/enable PLL for SAM9X60
> - minor fix in pm_suspend.S: s/sfr/sfrbu
> - move SAM9X60's macros for PLL in include/linux/clk/at91_pmc.h
>
> Thank you,
> Claudiu Beznea
>
> Claudiu Beznea (8):
> ARM: at91: pm: use proper master clock register offset
> Revert "ARM: at91: pm: do not disable/enable PLLA for ULP modes"
> ARM: at91: pm: add macros for plla disable/enable
> ARM: at91: pm: add pmc_version member to at91_pm_data
> ARM: at91: pm: s/sfr/sfrbu in pm_suspend.S
> clk: at91: move sam9x60's PLL register offsets to PMC header
> ARM: at91: pm: add plla disable/enable support for sam9x60
> ARM: at91: pm: add quirk for sam9x60's ulp1
>
> arch/arm/mach-at91/pm.c | 35 ++++++-
> arch/arm/mach-at91/pm.h | 2 +
> arch/arm/mach-at91/pm_data-offsets.c | 4 +
> arch/arm/mach-at91/pm_suspend.S | 189 ++++++++++++++++++++++++++++++++---
> drivers/clk/at91/clk-sam9x60-pll.c | 91 +++++++----------
> include/linux/clk/at91_pmc.h | 23 +++++
> 6 files changed, 270 insertions(+), 74 deletions(-)
>
Applied, thanks.
--
Alexandre Belloni, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
WARNING: multiple messages have this Message-ID (diff)
From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: Claudiu Beznea <claudiu.beznea@microchip.com>
Cc: sboyd@kernel.org, linux-kernel@vger.kernel.org,
mturquette@baylibre.com, linux@armlinux.org.uk,
ludovic.desroches@microchip.com, linux-clk@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 0/8] PM fixes and improvements for SAM9X60
Date: Fri, 14 Feb 2020 12:04:58 +0100 [thread overview]
Message-ID: <20200214110458.GE3578@piout.net> (raw)
In-Reply-To: <1579522208-19523-1-git-send-email-claudiu.beznea@microchip.com>
On 20/01/2020 14:10:00+0200, Claudiu Beznea wrote:
> Hi,
>
> This series adds fixes and improvements for SAM9X60 as follows:
> - fix master clock register offset in pm_suspend.S
> - add support for disable/enable PLL for SAM9X60
> - minor fix in pm_suspend.S: s/sfr/sfrbu
> - move SAM9X60's macros for PLL in include/linux/clk/at91_pmc.h
>
> Thank you,
> Claudiu Beznea
>
> Claudiu Beznea (8):
> ARM: at91: pm: use proper master clock register offset
> Revert "ARM: at91: pm: do not disable/enable PLLA for ULP modes"
> ARM: at91: pm: add macros for plla disable/enable
> ARM: at91: pm: add pmc_version member to at91_pm_data
> ARM: at91: pm: s/sfr/sfrbu in pm_suspend.S
> clk: at91: move sam9x60's PLL register offsets to PMC header
> ARM: at91: pm: add plla disable/enable support for sam9x60
> ARM: at91: pm: add quirk for sam9x60's ulp1
>
> arch/arm/mach-at91/pm.c | 35 ++++++-
> arch/arm/mach-at91/pm.h | 2 +
> arch/arm/mach-at91/pm_data-offsets.c | 4 +
> arch/arm/mach-at91/pm_suspend.S | 189 ++++++++++++++++++++++++++++++++---
> drivers/clk/at91/clk-sam9x60-pll.c | 91 +++++++----------
> include/linux/clk/at91_pmc.h | 23 +++++
> 6 files changed, 270 insertions(+), 74 deletions(-)
>
Applied, thanks.
--
Alexandre Belloni, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
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:[~2020-02-14 11:05 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-20 12:10 [PATCH 0/8] PM fixes and improvements for SAM9X60 Claudiu Beznea
2020-01-20 12:10 ` Claudiu Beznea
2020-01-20 12:10 ` [PATCH 1/8] ARM: at91: pm: use proper master clock register offset Claudiu Beznea
2020-01-20 12:10 ` Claudiu Beznea
2020-01-20 12:10 ` [PATCH 2/8] Revert "ARM: at91: pm: do not disable/enable PLLA for ULP modes" Claudiu Beznea
2020-01-20 12:10 ` Claudiu Beznea
2020-01-20 12:10 ` [PATCH 3/8] ARM: at91: pm: add macros for plla disable/enable Claudiu Beznea
2020-01-20 12:10 ` Claudiu Beznea
2020-01-20 12:10 ` [PATCH 4/8] ARM: at91: pm: add pmc_version member to at91_pm_data Claudiu Beznea
2020-01-20 12:10 ` Claudiu Beznea
2020-02-12 23:30 ` Stephen Boyd
2020-02-12 23:30 ` Stephen Boyd
2020-01-20 12:10 ` [PATCH 5/8] ARM: at91: pm: s/sfr/sfrbu in pm_suspend.S Claudiu Beznea
2020-01-20 12:10 ` Claudiu Beznea
2020-01-20 12:10 ` [PATCH 6/8] clk: at91: move sam9x60's PLL register offsets to PMC header Claudiu Beznea
2020-01-20 12:10 ` Claudiu Beznea
2020-02-12 23:31 ` Stephen Boyd
2020-02-12 23:31 ` Stephen Boyd
2020-01-20 12:10 ` [PATCH 7/8] ARM: at91: pm: add plla disable/enable support for sam9x60 Claudiu Beznea
2020-01-20 12:10 ` Claudiu Beznea
2020-01-20 12:10 ` [PATCH 8/8] ARM: at91: pm: add quirk for sam9x60's ulp1 Claudiu Beznea
2020-01-20 12:10 ` Claudiu Beznea
2020-02-14 11:04 ` Alexandre Belloni [this message]
2020-02-14 11:04 ` [PATCH 0/8] PM fixes and improvements for SAM9X60 Alexandre Belloni
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=20200214110458.GE3578@piout.net \
--to=alexandre.belloni@bootlin.com \
--cc=claudiu.beznea@microchip.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=ludovic.desroches@microchip.com \
--cc=mturquette@baylibre.com \
--cc=nicolas.ferre@microchip.com \
--cc=sboyd@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.