linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: dt.tangr@gmail.com (Daniel Tang)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCHv3 0/6] arm: Initial TI-Nspire support
Date: Sun, 12 May 2013 14:22:55 +1000	[thread overview]
Message-ID: <1368332581-94691-1-git-send-email-dt.tangr@gmail.com> (raw)

Changes between http://archive.arm.linux.org.uk/lurker/message/20130408.113343.585af217.en.html and v2:
* Added new drivers to support the irqchip and timers on older models.
* Added new device trees to support the other models.

Changes between v2 and v3:
* Clean up keypad driver
* Update copyright messages (2012->2013)
* Added clock driver
* Fix keypad support for classic models
* Fix nspire-classic-timer code to use updated CLOCKSOURCE_OF_DECLARE
* Change CLCD code to use panel capabilities
* Change UART clock to match APB speed
* Support for reset


First time using git send-email, please forgive me if this turns pear shaped.

Daniel Tang (6):
  arm: Initial TI-Nspire support
  arm: Add device trees for TI-Nspire
  clk: Add TI-Nspire clock drivers
  clocksource: Add TI-Nspire timer drivers
  input: Add TI-Nspire keypad driver
  irqchip: Add TI-Nspire irqchip

 arch/arm/Kconfig                           |   2 +
 arch/arm/Kconfig.debug                     |  16 ++
 arch/arm/Makefile                          |   1 +
 arch/arm/boot/dts/Makefile                 |   3 +
 arch/arm/boot/dts/nspire-classic.dtsi      |  75 +++++++
 arch/arm/boot/dts/nspire-clp.dts           |  45 +++++
 arch/arm/boot/dts/nspire-cx.dts            | 112 ++++++++++
 arch/arm/boot/dts/nspire-tp.dts            |  44 ++++
 arch/arm/boot/dts/nspire.dtsi              | 182 +++++++++++++++++
 arch/arm/include/debug/nspire.S            |  28 +++
 arch/arm/mach-nspire/Kconfig               |  15 ++
 arch/arm/mach-nspire/Makefile              |   2 +
 arch/arm/mach-nspire/Makefile.boot         |   0
 arch/arm/mach-nspire/clcd.c                | 117 +++++++++++
 arch/arm/mach-nspire/clcd.h                |  14 ++
 arch/arm/mach-nspire/mmio.h                |  18 ++
 arch/arm/mach-nspire/nspire.c              |  99 +++++++++
 drivers/clk/Makefile                       |   1 +
 drivers/clk/clk-nspire.c                   | 141 +++++++++++++
 drivers/clocksource/Makefile               |   1 +
 drivers/clocksource/nspire-classic-timer.c | 199 ++++++++++++++++++
 drivers/input/keyboard/Kconfig             |  10 +
 drivers/input/keyboard/Makefile            |   1 +
 drivers/input/keyboard/nspire-keypad.c     | 315 +++++++++++++++++++++++++++++
 drivers/irqchip/Makefile                   |   1 +
 drivers/irqchip/irq-nspire-classic.c       | 177 ++++++++++++++++
 26 files changed, 1619 insertions(+)
 create mode 100644 arch/arm/boot/dts/nspire-classic.dtsi
 create mode 100644 arch/arm/boot/dts/nspire-clp.dts
 create mode 100644 arch/arm/boot/dts/nspire-cx.dts
 create mode 100644 arch/arm/boot/dts/nspire-tp.dts
 create mode 100644 arch/arm/boot/dts/nspire.dtsi
 create mode 100644 arch/arm/include/debug/nspire.S
 create mode 100644 arch/arm/mach-nspire/Kconfig
 create mode 100644 arch/arm/mach-nspire/Makefile
 create mode 100644 arch/arm/mach-nspire/Makefile.boot
 create mode 100644 arch/arm/mach-nspire/clcd.c
 create mode 100644 arch/arm/mach-nspire/clcd.h
 create mode 100644 arch/arm/mach-nspire/mmio.h
 create mode 100644 arch/arm/mach-nspire/nspire.c
 create mode 100644 drivers/clk/clk-nspire.c
 create mode 100644 drivers/clocksource/nspire-classic-timer.c
 create mode 100644 drivers/input/keyboard/nspire-keypad.c
 create mode 100644 drivers/irqchip/irq-nspire-classic.c

-- 
1.8.1.3

             reply	other threads:[~2013-05-12  4:22 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-12  4:22 Daniel Tang [this message]
2013-05-12  4:22 ` [RFC PATCHv3 1/6] arm: Initial TI-Nspire support Daniel Tang
2013-05-12  9:06   ` Russell King - ARM Linux
2013-05-12  9:22     ` Daniel Tang
2013-05-12  4:22 ` [RFC PATCHv3 2/6] arm: Add device trees for TI-Nspire Daniel Tang
2013-05-15 14:10   ` Arnd Bergmann
2013-05-12  4:22 ` [RFC PATCHv3 3/6] clk: Add TI-Nspire clock drivers Daniel Tang
2013-05-15 14:07   ` Arnd Bergmann
2013-05-16  8:31     ` Daniel Tang
2013-05-16 12:17       ` Arnd Bergmann
2013-05-19 11:09         ` Daniel Tang
2013-05-19 19:48           ` Arnd Bergmann
2013-05-20 11:19             ` Daniel Tang
2013-05-20 12:26               ` Arnd Bergmann
2013-05-12  4:22 ` [RFC PATCHv3 4/6] clocksource: Add TI-Nspire timer drivers Daniel Tang
2013-05-14  8:03   ` Linus Walleij
2013-05-14 11:51     ` Daniel Tang
2013-05-17 13:17       ` Linus Walleij
2013-05-18  6:40         ` Daniel Tang
2013-05-20 12:49           ` Linus Walleij
2013-05-12  4:23 ` [RFC PATCHv3 5/6] input: Add TI-Nspire keypad driver Daniel Tang
2013-05-12  4:23 ` [RFC PATCHv3 6/6] irqchip: Add TI-Nspire irqchip Daniel Tang

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=1368332581-94691-1-git-send-email-dt.tangr@gmail.com \
    --to=dt.tangr@gmail.com \
    --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).