mbox

[GIT,PULL,RESEND] pxa: for-next v4.1

Message ID 87vbh2pi3m.fsf@free.fr
State New
Headers show

Pull-request

https://github.com/rjarzmik/linux.git tags/pxa-for-4.1

Message

Robert Jarzmik April 11, 2015, 7:42 p.m. UTC
Robert Jarzmik <robert.jarzmik@free.fr> writes:

Hello Arnd, Kevin, Olof,

Please consider these pxa for next for v4.1 cycle. This is my leap of faith,
with the conversion of all pxa variants to clock framework. The diffstat is
quite pretty, given all the code moved to drivers/clk.

The following changes since commit c517d838eb7d07bbe9507871fab3931deccff539:

  Linux 4.0-rc1 (2015-02-22 18:21:14 -0800)

are available in the git repository at:

  https://github.com/rjarzmik/linux.git tags/pxa-for-4.1

for you to fetch changes up to 6fe9642bed2e8760be51d4278a21efccc8cceb06:

  ARM: pxa: Transition pxa25x, pxa27x, pxa3xx to clk framework (2015-03-16 21:35:10 +0100)

----------------------------------------------------------------
This is the pxa changes for v4.1 cycle.

The main and only feature is the conversion of all pxa variants to clock
framework. This encompasses pxa25x, pxa27x and pxa3xx, for all boards.

This should be a disruptive cycle in the normally quiet pxa history, as
the change can break any platform, and the test were performed on only 4
boards (lubbock, zylonite, mioa701, cm-x300).

----------------------------------------------------------------
Robert Jarzmik (7):
      ARM: pxa: change clocks init sequence
      ARM: pxa: move gpio11 clock to board files
      clk: pxa: add missing pxa27x clocks for Irda and sa1100-rtc
      ARM: pxa: pxa27x skip default device initialization with DT
      ARM: pxa: Transition pxa25x and pxa27x to clk framework
      ARM: pxa: convert eseries to clock framework
      ARM: pxa: Transition pxa25x, pxa27x, pxa3xx to clk framework

 arch/arm/Kconfig                 |   1 +
 arch/arm/mach-pxa/Makefile       |   9 +-
 arch/arm/mach-pxa/clock-pxa2xx.c |  55 ----------
 arch/arm/mach-pxa/clock-pxa3xx.c | 212 ---------------------------------------
 arch/arm/mach-pxa/clock.c        |  86 ----------------
 arch/arm/mach-pxa/clock.h        |  80 ---------------
 arch/arm/mach-pxa/eseries.c      |  27 ++---
 arch/arm/mach-pxa/generic.c      |   6 ++
 arch/arm/mach-pxa/generic.h      |   3 +
 arch/arm/mach-pxa/lubbock.c      |   4 +-
 arch/arm/mach-pxa/pxa25x.c       | 183 ---------------------------------
 arch/arm/mach-pxa/pxa27x.c       | 182 ++-------------------------------
 arch/arm/mach-pxa/pxa300.c       |  20 +---
 arch/arm/mach-pxa/pxa320.c       |  10 --
 arch/arm/mach-pxa/pxa3xx.c       |  59 -----------
 arch/arm/mach-pxa/raumfeld.c     |   1 -
 arch/arm/mach-pxa/tosa.c         |   1 -
 drivers/clk/pxa/clk-pxa27x.c     |  32 +++++-
 18 files changed, 62 insertions(+), 909 deletions(-)
 delete mode 100644 arch/arm/mach-pxa/clock-pxa2xx.c
 delete mode 100644 arch/arm/mach-pxa/clock-pxa3xx.c
 delete mode 100644 arch/arm/mach-pxa/clock.c
 delete mode 100644 arch/arm/mach-pxa/clock.h

Comments

Arnd Bergmann April 13, 2015, 11:46 p.m. UTC | #1
On Saturday 11 April 2015, Robert Jarzmik wrote:
> This is the pxa changes for v4.1 cycle.
> 
> The main and only feature is the conversion of all pxa variants to clock
> framework. This encompasses pxa25x, pxa27x and pxa3xx, for all boards.
> 
> This should be a disruptive cycle in the normally quiet pxa history, as
> the change can break any platform, and the test were performed on only 4
> boards (lubbock, zylonite, mioa701, cm-x300).

Hi Robert,

We screwed up here and missed the pull requests earlier. I thought
about putting them in the late branch now, but as they had no time in
linux-next before the merge window, I think it's way too risky.

Please submit again after 4.1-rc1. Feel free to nag us much earlier
if you get the impression that we missed something you wanted us
to pick up.

	Arnd
Robert Jarzmik April 14, 2015, 6:16 a.m. UTC | #2
Arnd Bergmann <arnd@arndb.de> writes:

> On Saturday 11 April 2015, Robert Jarzmik wrote:
>> This is the pxa changes for v4.1 cycle.
>> 
>> The main and only feature is the conversion of all pxa variants to clock
>> framework. This encompasses pxa25x, pxa27x and pxa3xx, for all boards.
>> 
>> This should be a disruptive cycle in the normally quiet pxa history, as
>> the change can break any platform, and the test were performed on only 4
>> boards (lubbock, zylonite, mioa701, cm-x300).
>
> Hi Robert,
>
> We screwed up here and missed the pull requests earlier. I thought
> about putting them in the late branch now, but as they had no time in
> linux-next before the merge window, I think it's way too risky.
OK, it happens. And agreed, it is too risky, this is one of my major changes.

> Please submit again after 4.1-rc1. Feel free to nag us much earlier
> if you get the impression that we missed something you wanted us
> to pick up.
All right, let's do that.

Cheers.