linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: linux@rempel-privat.de (Oleksij Rempel)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 00/10] initial suport for Alphascale ASM9260
Date: Tue, 14 Oct 2014 10:03:28 +0200	[thread overview]
Message-ID: <1413273818-11811-1-git-send-email-linux@rempel-privat.de> (raw)

This patchset provide initial support for Alpascale ASM9260,
ARM based SoC.

Oleksij Rempel (10):
  ARM: add mach-asm9260
  ARM: add lolevel debug support for asm9260
  ARM: clk: add clk-asm9260 driver
  ARM: irqchip: mxs: prepare driver for HW with different offsets
  ARM: irqchip: mxs: add Alpascale ASM9260 support
  ARM: clocksource: add asm9260_timer driver
  ARM: tty: mxs-auart: add initial Alphascale ASM9260 support
  ARM: dts: add DT for Alphascale ASM9260 SoC
  ARM: add alphascale,acc.txt bindings documentation
  add Alphascale to vendor-prefixes.txt

 .../devicetree/bindings/clock/alphascale,acc.txt   | 115 +++++++
 .../devicetree/bindings/vendor-prefixes.txt        |   1 +
 arch/arm/Kconfig                                   |   2 +
 arch/arm/Kconfig.debug                             |  33 +-
 arch/arm/boot/dts/Makefile                         |   2 +
 arch/arm/boot/dts/alphascale-asm9260-devkit.dts    |  21 ++
 arch/arm/boot/dts/alphascale-asm9260.dtsi          | 134 ++++++++
 arch/arm/include/debug/asm9260.S                   |  31 ++
 arch/arm/mach-asm9260/Kconfig                      |   8 +
 drivers/clk/Makefile                               |   1 +
 drivers/clk/clk-asm9260.c                          | 351 +++++++++++++++++++
 drivers/clocksource/Kconfig                        |   4 +
 drivers/clocksource/Makefile                       |   1 +
 drivers/clocksource/asm9260_timer.c                | 234 +++++++++++++
 drivers/irqchip/Kconfig                            |   5 +
 drivers/irqchip/Makefile                           |   2 +-
 drivers/irqchip/alphascale_asm9260-icoll.h         | 109 ++++++
 drivers/irqchip/irq-mxs.c                          | 157 ++++++++-
 drivers/tty/serial/Kconfig                         |   5 +-
 drivers/tty/serial/alphascale,asm9260_serial.h     | 373 +++++++++++++++++++++
 drivers/tty/serial/mxs-auart.c                     | 344 ++++++++++++-------
 include/dt-bindings/clock/alphascale,asm9260.h     |  97 ++++++
 22 files changed, 1887 insertions(+), 143 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/alphascale,acc.txt
 create mode 100644 arch/arm/boot/dts/alphascale-asm9260-devkit.dts
 create mode 100644 arch/arm/boot/dts/alphascale-asm9260.dtsi
 create mode 100644 arch/arm/include/debug/asm9260.S
 create mode 100644 arch/arm/mach-asm9260/Kconfig
 create mode 100644 drivers/clk/clk-asm9260.c
 create mode 100644 drivers/clocksource/asm9260_timer.c
 create mode 100644 drivers/irqchip/alphascale_asm9260-icoll.h
 create mode 100644 drivers/tty/serial/alphascale,asm9260_serial.h
 create mode 100644 include/dt-bindings/clock/alphascale,asm9260.h

-- 
1.9.1

             reply	other threads:[~2014-10-14  8:03 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-14  8:03 Oleksij Rempel [this message]
2014-10-14  8:03 ` [PATCH v5 01/10] ARM: add mach-asm9260 Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 02/10] ARM: add lolevel debug support for asm9260 Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 03/10] ARM: clk: add clk-asm9260 driver Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 04/10] ARM: irqchip: mxs: prepare driver for HW with different offsets Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 05/10] ARM: irqchip: mxs: add Alpascale ASM9260 support Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 06/10] ARM: clocksource: add asm9260_timer driver Oleksij Rempel
2014-10-15 21:31   ` Matthias Brugger
2014-10-16 10:46     ` Oleksij Rempel
2014-10-16 14:49       ` Matthias Brugger
2014-10-17  9:46     ` [PATCH v6] " Oleksij Rempel
2014-10-19 20:13       ` Arnd Bergmann
2014-10-14  8:03 ` [PATCH v5 07/10] ARM: tty: mxs-auart: add initial Alphascale ASM9260 support Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 08/10] ARM: dts: add DT for Alphascale ASM9260 SoC Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 09/10] ARM: add alphascale,acc.txt bindings documentation Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 10/10] add Alphascale to vendor-prefixes.txt Oleksij Rempel

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=1413273818-11811-1-git-send-email-linux@rempel-privat.de \
    --to=linux@rempel-privat.de \
    --cc=linux-arm-kernel@lists.infradead.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).