From: dt.tangr@gmail.com (Daniel Tang)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCHv4 0/6] arm: Initial TI-Nspire support
Date: Sat, 25 May 2013 21:08:01 +1000 [thread overview]
Message-ID: <1369480087-24786-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
Changes between v3 and v4:
* Remove redundant clock-names in device tree
* Re-enable bus access to some peripherals on bootup
* Clean up nspire-classic-timer code.
- Implement a nspire_timer_set_mode function
- Removed messy IO_MATCHx and CNTL_MATCHx macros
- Timer starts disabled to begin with
- Interrupt handling code return IRQ_NONE for spurious interrupts
- Delete unnessecary shift
* Change clk-nspire to use compatible property to determine IO type
* Change device tree bindings to have appropriate vendor prefixes
* Added device tree binding documentation
* Fix incorrect register addresses for clocks
* Use more specific .caps for CLCD
Daniel Tang (6):
arm: TI-Nspire platform code
arm: TI-Nspire device trees
clk: TI-Nspire clock drivers
clocksource: TI-Nspire timer support
input: TI-Nspire keypad support
irqchip: TI-Nspire irqchip support
.../devicetree/bindings/clock/nspire-clock.txt | 24 ++
.../devicetree/bindings/input/ti,nspire-keypad.txt | 60 ++++
.../interrupt-controller/lsi,zevio-intc.txt | 18 ++
.../devicetree/bindings/timer/lsi,zevio-timer.txt | 33 +++
.../devicetree/bindings/vendor-prefixes.txt | 1 +
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 | 74 +++++
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 | 175 ++++++++++++
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 | 119 ++++++++
arch/arm/mach-nspire/clcd.h | 14 +
arch/arm/mach-nspire/mmio.h | 23 ++
arch/arm/mach-nspire/nspire.c | 117 ++++++++
drivers/clk/Makefile | 1 +
drivers/clk/clk-nspire.c | 155 ++++++++++
drivers/clocksource/Makefile | 1 +
drivers/clocksource/zevio-timer.c | 231 +++++++++++++++
drivers/input/keyboard/Kconfig | 10 +
drivers/input/keyboard/Makefile | 1 +
drivers/input/keyboard/nspire-keypad.c | 315 +++++++++++++++++++++
drivers/irqchip/Makefile | 1 +
drivers/irqchip/irq-zevio.c | 177 ++++++++++++
31 files changed, 1818 insertions(+)
create mode 100644 Documentation/devicetree/bindings/clock/nspire-clock.txt
create mode 100644 Documentation/devicetree/bindings/input/ti,nspire-keypad.txt
create mode 100644 Documentation/devicetree/bindings/interrupt-controller/lsi,zevio-intc.txt
create mode 100644 Documentation/devicetree/bindings/timer/lsi,zevio-timer.txt
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/zevio-timer.c
create mode 100644 drivers/input/keyboard/nspire-keypad.c
create mode 100644 drivers/irqchip/irq-zevio.c
--
1.8.1.3
next reply other threads:[~2013-05-25 11:08 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-25 11:08 Daniel Tang [this message]
2013-05-25 11:08 ` [RFC PATCHv4 1/6] arm: TI-Nspire platform code Daniel Tang
2013-05-26 20:46 ` Arnd Bergmann
2013-05-27 4:07 ` Daniel Tang
2013-05-27 6:56 ` Arnd Bergmann
[not found] ` <CAPnH9dnA22C3ZS9jgJNytnmKM_8Vfk7OxNRB1Mg03=q7KhHZBA@mail.gmail.com>
[not found] ` <201305271715.02385.arnd@arndb.de>
2013-05-29 5:14 ` Daniel Tang
2013-05-29 7:58 ` Arnd Bergmann
2013-05-25 11:08 ` [RFC PATCHv4 2/6] arm: TI-Nspire device trees Daniel Tang
2013-05-25 11:08 ` [RFC PATCHv4 3/6] clk: TI-Nspire clock drivers Daniel Tang
2013-05-31 1:16 ` Mike Turquette
2013-05-25 11:08 ` [RFC PATCHv4 4/6] clocksource: TI-Nspire timer support Daniel Tang
2013-05-27 10:53 ` Linus Walleij
2013-05-27 10:56 ` Daniel Tang
2013-05-27 12:28 ` Thomas Gleixner
2013-05-25 11:08 ` [RFC PATCHv4 5/6] input: TI-Nspire keypad support Daniel Tang
2013-05-25 11:08 ` [RFC PATCHv4 6/6] irqchip: TI-Nspire irqchip support Daniel Tang
2013-05-30 21:29 ` Grant Likely
2013-05-26 21:23 ` [RFC PATCHv4 0/6] arm: Initial TI-Nspire support Arnd Bergmann
2013-05-27 2:23 ` Daniel Tang
2013-05-27 10:31 ` Arnd Bergmann
2013-05-28 10:52 ` Pawel Moll
2013-05-31 7:43 ` Laurent Pinchart
2013-05-29 5:18 ` Daniel Tang
2013-05-29 12:46 ` Arnd Bergmann
2013-05-27 10:32 ` Arnd Bergmann
2013-05-28 10:54 ` Pawel Moll
2013-05-28 14:16 ` Linus Walleij
2013-05-28 14:21 ` Pawel Moll
2013-05-28 14:52 ` Arnd Bergmann
2013-05-28 15:10 ` Andy Shevchenko
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=1369480087-24786-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).