linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] ARM: clps711x: IRQCHIP driver
@ 2013-12-19 11:56 Alexander Shiyan
  2013-12-29  4:43 ` Alexander Shiyan
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Shiyan @ 2013-12-19 11:56 UTC (permalink / raw)
  To: linux-arm-kernel

This series is devoted to new CLPS711X irqchip driver.
The driver designed for booting from ATAGS and devicetree.

Alexander Shiyan (3):
  ARM: clps711x: Add CLPS711X irqchip driver
  ARM: dts: clps711x: Add bindings documentation for CLPS711X irqchip
    driver
  ARM: clps711x: Migrate CLPS711X subarch to the new irqchip driver

 .../interrupt-controller/cirrus,clps711x-intc.txt  |  41 ++++
 arch/arm/Kconfig                                   |   2 -
 arch/arm/mach-clps711x/board-autcpu12.c            |   2 -
 arch/arm/mach-clps711x/board-cdb89712.c            |   2 -
 arch/arm/mach-clps711x/board-clep7312.c            |   2 -
 arch/arm/mach-clps711x/board-edb7211.c             |   2 -
 arch/arm/mach-clps711x/board-p720t.c               |   2 -
 arch/arm/mach-clps711x/common.c                    | 201 +----------------
 arch/arm/mach-clps711x/common.h                    |   5 +-
 arch/arm/mach-clps711x/include/mach/clps711x.h     |  16 --
 drivers/irqchip/Kconfig                            |   8 +
 drivers/irqchip/Makefile                           |   1 +
 drivers/irqchip/irq-clps711x.c                     | 243 +++++++++++++++++++++
 13 files changed, 299 insertions(+), 228 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/interrupt-controller/cirrus,clps711x-intc.txt
 create mode 100644 drivers/irqchip/irq-clps711x.c

-- 
1.8.3.2

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH v2 0/3] ARM: clps711x: IRQCHIP driver
  2013-12-19 11:56 [PATCH v2 0/3] ARM: clps711x: IRQCHIP driver Alexander Shiyan
@ 2013-12-29  4:43 ` Alexander Shiyan
  2014-01-20  4:49   ` Alexander Shiyan
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Shiyan @ 2013-12-29  4:43 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, 19 Dec 2013 15:56:54 +0400
Alexander Shiyan <shc_work@mail.ru> wrote:

> This series is devoted to new CLPS711X irqchip driver.
> The driver designed for booting from ATAGS and devicetree.
> 
> Alexander Shiyan (3):
>   ARM: clps711x: Add CLPS711X irqchip driver
>   ARM: dts: clps711x: Add bindings documentation for CLPS711X irqchip
>     driver
>   ARM: clps711x: Migrate CLPS711X subarch to the new irqchip driver
> 
>  .../interrupt-controller/cirrus,clps711x-intc.txt  |  41 ++++
>  arch/arm/Kconfig                                   |   2 -
>  arch/arm/mach-clps711x/board-autcpu12.c            |   2 -
>  arch/arm/mach-clps711x/board-cdb89712.c            |   2 -
>  arch/arm/mach-clps711x/board-clep7312.c            |   2 -
>  arch/arm/mach-clps711x/board-edb7211.c             |   2 -
>  arch/arm/mach-clps711x/board-p720t.c               |   2 -
>  arch/arm/mach-clps711x/common.c                    | 201 +----------------
>  arch/arm/mach-clps711x/common.h                    |   5 +-
>  arch/arm/mach-clps711x/include/mach/clps711x.h     |  16 --
>  drivers/irqchip/Kconfig                            |   8 +
>  drivers/irqchip/Makefile                           |   1 +
>  drivers/irqchip/irq-clps711x.c                     | 243 +++++++++++++++++++++
>  13 files changed, 299 insertions(+), 228 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/interrupt-controller/cirrus,clps711x-intc.txt
>  create mode 100644 drivers/irqchip/irq-clps711x.c
> 
> -- 

Ping.

-- 
Alexander Shiyan <shc_work@mail.ru>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH v2 0/3] ARM: clps711x: IRQCHIP driver
  2013-12-29  4:43 ` Alexander Shiyan
@ 2014-01-20  4:49   ` Alexander Shiyan
  0 siblings, 0 replies; 3+ messages in thread
From: Alexander Shiyan @ 2014-01-20  4:49 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, 29 Dec 2013 08:43:40 +0400
Alexander Shiyan <shc_work@mail.ru> wrote:

> On Thu, 19 Dec 2013 15:56:54 +0400
> Alexander Shiyan <shc_work@mail.ru> wrote:
> 
> > This series is devoted to new CLPS711X irqchip driver.
> > The driver designed for booting from ATAGS and devicetree.
> > 
> > Alexander Shiyan (3):
> >   ARM: clps711x: Add CLPS711X irqchip driver
> >   ARM: dts: clps711x: Add bindings documentation for CLPS711X irqchip
> >     driver
> >   ARM: clps711x: Migrate CLPS711X subarch to the new irqchip driver
> > 
> >  .../interrupt-controller/cirrus,clps711x-intc.txt  |  41 ++++
> >  arch/arm/Kconfig                                   |   2 -
> >  arch/arm/mach-clps711x/board-autcpu12.c            |   2 -
> >  arch/arm/mach-clps711x/board-cdb89712.c            |   2 -
> >  arch/arm/mach-clps711x/board-clep7312.c            |   2 -
> >  arch/arm/mach-clps711x/board-edb7211.c             |   2 -
> >  arch/arm/mach-clps711x/board-p720t.c               |   2 -
> >  arch/arm/mach-clps711x/common.c                    | 201 +----------------
> >  arch/arm/mach-clps711x/common.h                    |   5 +-
> >  arch/arm/mach-clps711x/include/mach/clps711x.h     |  16 --
> >  drivers/irqchip/Kconfig                            |   8 +
> >  drivers/irqchip/Makefile                           |   1 +
> >  drivers/irqchip/irq-clps711x.c                     | 243 +++++++++++++++++++++
> >  13 files changed, 299 insertions(+), 228 deletions(-)
> >  create mode 100644 Documentation/devicetree/bindings/interrupt-controller/cirrus,clps711x-intc.txt
> >  create mode 100644 drivers/irqchip/irq-clps711x.c
> > 
> > -- 
> 
> Ping.

Silence more than two weeks from the last post on this series.
Arnd, Olof, I beg to apply these patches to arm-soc.
Thanks.

-- 
Alexander Shiyan <shc_work@mail.ru>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-01-20  4:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-19 11:56 [PATCH v2 0/3] ARM: clps711x: IRQCHIP driver Alexander Shiyan
2013-12-29  4:43 ` Alexander Shiyan
2014-01-20  4:49   ` Alexander Shiyan

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).