devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Florian Fainelli <florian@openwrt.org>
To: linux-arm-kernel@lists.infradead.org
Cc: olof@lixom.net, devicetree-discuss@lists.ozlabs.org,
	Florian Fainelli <florian@openwrt.org>,
	arnd@arndb.de
Subject: [PATCH 0/8] ARM: support for Moschip MCS814x SoCs
Date: Sun, 15 Jul 2012 16:49:06 +0200	[thread overview]
Message-ID: <1342363754-30808-1-git-send-email-florian@openwrt.org> (raw)

Hi all,

This patchset adds basic support for Mocship MCS814x, and in particular
MCS8140, and allows one booting to user space. Two off-the-shelf boards
are support: Tigal/Robotech RBT-832 and Devolo dLAN USB Extender.

Support for other on-board peripherals will obviously be contributed later
once the basic SoC support has been accepted.

Florian Fainelli (8):
  ARM: support for Moschip MCS814x SoCs
  ARM: MCS814x: add Device Tree based MCS8140 board support
  ARM: MCS814x: add Device Tree bindings documentation
  ARM: MCS814X: add DTS file for Tigal/Robotech RBT-832
  ARM: MCS814x: add DTS file for Devolo dLAN USB Extender
  ARM: MCS814x: provide a sample defconfig file
  ARM: MSC814X: add Kconfig and Makefile to arch/arm
  ARM: MSC814x: add MAINTAINERS entry

 .../bindings/arm/mcs814x/mcs814x-intc.txt          |   18 +
 .../bindings/arm/mcs814x/mcs814x-pci.txt           |   16 +
 .../bindings/arm/mcs814x/mcs814x-timer.txt         |   16 +
 .../devicetree/bindings/arm/mcs814x/mcs814x.txt    |   13 +
 .../devicetree/bindings/vendor-prefixes.txt        |    1 +
 MAINTAINERS                                        |    6 +
 arch/arm/Kconfig                                   |   28 ++
 arch/arm/Makefile                                  |    1 +
 arch/arm/boot/dts/dlan-usb-extender.dts            |   68 +++
 arch/arm/boot/dts/mcs8140.dtsi                     |  207 +++++++++
 arch/arm/boot/dts/rbt-832.dts                      |   83 ++++
 arch/arm/configs/mcs814x_defconfig                 |  174 ++++++++
 arch/arm/mach-mcs814x/Kconfig                      |   29 ++
 arch/arm/mach-mcs814x/Makefile                     |    6 +
 arch/arm/mach-mcs814x/Makefile.boot                |    6 +
 arch/arm/mach-mcs814x/board-mcs8140-dt.c           |   46 ++
 arch/arm/mach-mcs814x/clock.c                      |  271 ++++++++++++
 arch/arm/mach-mcs814x/common.c                     |   97 +++++
 arch/arm/mach-mcs814x/common.h                     |   15 +
 arch/arm/mach-mcs814x/include/mach/cpu.h           |   16 +
 arch/arm/mach-mcs814x/include/mach/debug-macro.S   |   11 +
 arch/arm/mach-mcs814x/include/mach/entry-macro.S   |   29 ++
 arch/arm/mach-mcs814x/include/mach/gpio.h          |    1 +
 arch/arm/mach-mcs814x/include/mach/hardware.h      |   16 +
 arch/arm/mach-mcs814x/include/mach/irqs.h          |   22 +
 arch/arm/mach-mcs814x/include/mach/mcs814x.h       |   53 +++
 arch/arm/mach-mcs814x/include/mach/memory.h        |   16 +
 arch/arm/mach-mcs814x/include/mach/timex.h         |   18 +
 arch/arm/mach-mcs814x/include/mach/uncompress.h    |   41 ++
 arch/arm/mach-mcs814x/irq.c                        |   69 +++
 arch/arm/mach-mcs814x/pci.c                        |  446 ++++++++++++++++++++
 arch/arm/mach-mcs814x/timer.c                      |  133 ++++++
 32 files changed, 1972 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/arm/mcs814x/mcs814x-intc.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mcs814x/mcs814x-pci.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mcs814x/mcs814x-timer.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mcs814x/mcs814x.txt
 create mode 100644 arch/arm/boot/dts/dlan-usb-extender.dts
 create mode 100644 arch/arm/boot/dts/mcs8140.dtsi
 create mode 100644 arch/arm/boot/dts/rbt-832.dts
 create mode 100644 arch/arm/configs/mcs814x_defconfig
 create mode 100644 arch/arm/mach-mcs814x/Kconfig
 create mode 100644 arch/arm/mach-mcs814x/Makefile
 create mode 100644 arch/arm/mach-mcs814x/Makefile.boot
 create mode 100644 arch/arm/mach-mcs814x/board-mcs8140-dt.c
 create mode 100644 arch/arm/mach-mcs814x/clock.c
 create mode 100644 arch/arm/mach-mcs814x/common.c
 create mode 100644 arch/arm/mach-mcs814x/common.h
 create mode 100644 arch/arm/mach-mcs814x/include/mach/cpu.h
 create mode 100644 arch/arm/mach-mcs814x/include/mach/debug-macro.S
 create mode 100644 arch/arm/mach-mcs814x/include/mach/entry-macro.S
 create mode 100644 arch/arm/mach-mcs814x/include/mach/gpio.h
 create mode 100644 arch/arm/mach-mcs814x/include/mach/hardware.h
 create mode 100644 arch/arm/mach-mcs814x/include/mach/irqs.h
 create mode 100644 arch/arm/mach-mcs814x/include/mach/mcs814x.h
 create mode 100644 arch/arm/mach-mcs814x/include/mach/memory.h
 create mode 100644 arch/arm/mach-mcs814x/include/mach/timex.h
 create mode 100644 arch/arm/mach-mcs814x/include/mach/uncompress.h
 create mode 100644 arch/arm/mach-mcs814x/irq.c
 create mode 100644 arch/arm/mach-mcs814x/pci.c
 create mode 100644 arch/arm/mach-mcs814x/timer.c

-- 
1.7.10.4

             reply	other threads:[~2012-07-15 14:49 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-15 14:49 Florian Fainelli [this message]
2012-07-15 14:49 ` [PATCH 1/8] ARM: support for Moschip MCS814x SoCs Florian Fainelli
2012-07-16 12:29   ` Thomas Petazzoni
2012-07-16 12:43     ` Florian Fainelli
2012-07-16 15:55       ` Arnd Bergmann
2012-07-16 17:57       ` Nicolas Pitre
2012-07-23 19:11     ` Florian Fainelli
2012-07-27 22:42       ` Linus Walleij
     [not found]   ` <1342363754-30808-2-git-send-email-florian-p3rKhJxN3npAfugRpC6u6w@public.gmane.org>
2012-07-16 15:54     ` Arnd Bergmann
     [not found]       ` <201207161554.04812.arnd-r2nGTMty4D4@public.gmane.org>
2012-07-16 20:47         ` Turquette, Mike
2012-07-17  9:41           ` Florian Fainelli
2012-07-17 10:47           ` Florian Fainelli
2012-07-16 22:12         ` Linus Walleij
2012-07-17  9:35           ` Florian Fainelli
2012-07-17  9:34       ` Florian Fainelli
2012-07-17 13:07         ` Arnd Bergmann
2012-07-17 13:32           ` Florian Fainelli
2012-07-17 13:45             ` Arnd Bergmann
2012-07-17 10:16       ` Thomas Petazzoni
2012-07-17 13:12         ` Arnd Bergmann
2012-07-17 13:28           ` Thomas Petazzoni
2012-07-17 13:51             ` Arnd Bergmann
2012-07-16 22:06     ` Linus Walleij
2012-07-15 14:49 ` [PATCH 2/8] ARM: MCS814x: add Device Tree based MCS8140 board support Florian Fainelli
     [not found]   ` <1342363754-30808-3-git-send-email-florian-p3rKhJxN3npAfugRpC6u6w@public.gmane.org>
2012-07-17 13:19     ` Arnd Bergmann
2012-07-17 13:34       ` Florian Fainelli
2012-07-17 13:53         ` Arnd Bergmann
2012-07-17 13:57           ` Florian Fainelli
2012-07-15 14:49 ` [PATCH 3/8] ARM: MCS814x: add Device Tree bindings documentation Florian Fainelli
     [not found]   ` <1342363754-30808-4-git-send-email-florian-p3rKhJxN3npAfugRpC6u6w@public.gmane.org>
2012-07-17 13:24     ` Arnd Bergmann
2012-07-17 13:35       ` Florian Fainelli
2012-07-15 14:49 ` [PATCH 4/8] ARM: MCS814X: add DTS file for Tigal/Robotech RBT-832 Florian Fainelli
     [not found]   ` <1342363754-30808-5-git-send-email-florian-p3rKhJxN3npAfugRpC6u6w@public.gmane.org>
2012-07-17 13:27     ` Arnd Bergmann
2012-07-15 14:49 ` [PATCH 5/8] ARM: MCS814x: add DTS file for Devolo dLAN USB Extender Florian Fainelli
2012-07-15 14:49 ` [PATCH 6/8] ARM: MCS814x: provide a sample defconfig file Florian Fainelli
2012-07-15 14:49 ` [PATCH 7/8] ARM: MSC814X: add Kconfig and Makefile to arch/arm Florian Fainelli
2012-07-15 14:49 ` [PATCH 8/8] ARM: MSC814x: add MAINTAINERS entry Florian Fainelli
     [not found] ` <1342363754-30808-1-git-send-email-florian-p3rKhJxN3npAfugRpC6u6w@public.gmane.org>
2012-07-15 19:59   ` [PATCH 0/8] ARM: support for Moschip MCS814x SoCs Arnd Bergmann
2012-07-16  8:16     ` Florian Fainelli
     [not found]     ` <201207151959.19620.arnd-r2nGTMty4D4@public.gmane.org>
2012-07-16 18:09       ` Nicolas Pitre

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=1342363754-30808-1-git-send-email-florian@openwrt.org \
    --to=florian@openwrt.org \
    --cc=arnd@arndb.de \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=olof@lixom.net \
    /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).