From: robherring2@gmail.com (Rob Herring)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/7] Initial Calxeda Highbank support
Date: Wed, 31 Aug 2011 20:43:59 -0500 [thread overview]
Message-ID: <1314841446-11006-1-git-send-email-robherring2@gmail.com> (raw)
From: Rob Herring <rob.herring@calxeda.com>
This adds initial platform support for Calxeda's Highbank ARM SOC including
SMP, hotplug, and suspend support. One new patch to add empty version of
l2x0_of_init. Changes for v2 are listed in each patch.
Based on rmk's for-next branch with gpio.h and io.h clean-ups plus previously
posted GIC devicetree binding support. The GIC patches are here:
http://lists.infradead.org/pipermail/linux-arm-kernel/2011-August/060570.html
http://lists.infradead.org/pipermail/linux-arm-kernel/2011-August/060790.html
http://lists.infradead.org/pipermail/linux-arm-kernel/2011-August/062735.html
Rob
Martin Bogomolni (1):
ARM: highbank: Add cpu hotplug support
Rob Herring (6):
ARM: l2x0: add empty l2x0_of_init
ARM: highbank: add devicetree source
ARM: add Highbank core platform support
MAINTAINERS: add Calxeda Highbank ARM platform
ARM: highbank: add SMP support
ARM: highbank: add suspend support
Documentation/devicetree/bindings/arm/calxeda.txt | 8 +
MAINTAINERS | 6 +
arch/arm/Kconfig | 18 ++-
arch/arm/Makefile | 1 +
arch/arm/boot/dts/highbank.dts | 224 +++++++++++++++++++++
arch/arm/include/asm/hardware/cache-l2x0.h | 7 +
arch/arm/mach-highbank/Makefile | 6 +
arch/arm/mach-highbank/Makefile.boot | 1 +
arch/arm/mach-highbank/clock.c | 62 ++++++
arch/arm/mach-highbank/core.h | 9 +
arch/arm/mach-highbank/highbank.c | 150 ++++++++++++++
arch/arm/mach-highbank/hotplug.c | 56 +++++
arch/arm/mach-highbank/include/mach/debug-macro.S | 19 ++
arch/arm/mach-highbank/include/mach/entry-macro.S | 7 +
arch/arm/mach-highbank/include/mach/gpio.h | 1 +
arch/arm/mach-highbank/include/mach/io.h | 7 +
arch/arm/mach-highbank/include/mach/irqs.h | 6 +
arch/arm/mach-highbank/include/mach/memory.h | 1 +
arch/arm/mach-highbank/include/mach/system.h | 26 +++
arch/arm/mach-highbank/include/mach/timex.h | 6 +
arch/arm/mach-highbank/include/mach/uncompress.h | 9 +
arch/arm/mach-highbank/include/mach/vmalloc.h | 6 +
arch/arm/mach-highbank/lluart.c | 34 +++
arch/arm/mach-highbank/localtimer.c | 38 ++++
arch/arm/mach-highbank/platsmp.c | 78 +++++++
arch/arm/mach-highbank/pm.c | 55 +++++
arch/arm/mach-highbank/sysregs.h | 52 +++++
arch/arm/mach-highbank/system.c | 33 +++
arch/arm/mm/Kconfig | 2 +-
29 files changed, 926 insertions(+), 2 deletions(-)
create mode 100644 Documentation/devicetree/bindings/arm/calxeda.txt
create mode 100644 arch/arm/boot/dts/highbank.dts
create mode 100644 arch/arm/mach-highbank/Makefile
create mode 100644 arch/arm/mach-highbank/Makefile.boot
create mode 100644 arch/arm/mach-highbank/clock.c
create mode 100644 arch/arm/mach-highbank/core.h
create mode 100644 arch/arm/mach-highbank/highbank.c
create mode 100644 arch/arm/mach-highbank/hotplug.c
create mode 100644 arch/arm/mach-highbank/include/mach/debug-macro.S
create mode 100644 arch/arm/mach-highbank/include/mach/entry-macro.S
create mode 100644 arch/arm/mach-highbank/include/mach/gpio.h
create mode 100644 arch/arm/mach-highbank/include/mach/io.h
create mode 100644 arch/arm/mach-highbank/include/mach/irqs.h
create mode 100644 arch/arm/mach-highbank/include/mach/memory.h
create mode 100644 arch/arm/mach-highbank/include/mach/system.h
create mode 100644 arch/arm/mach-highbank/include/mach/timex.h
create mode 100644 arch/arm/mach-highbank/include/mach/uncompress.h
create mode 100644 arch/arm/mach-highbank/include/mach/vmalloc.h
create mode 100644 arch/arm/mach-highbank/lluart.c
create mode 100644 arch/arm/mach-highbank/localtimer.c
create mode 100644 arch/arm/mach-highbank/platsmp.c
create mode 100644 arch/arm/mach-highbank/pm.c
create mode 100644 arch/arm/mach-highbank/sysregs.h
create mode 100644 arch/arm/mach-highbank/system.c
--
1.7.4.1
next reply other threads:[~2011-09-01 1:43 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-01 1:43 Rob Herring [this message]
2011-09-01 1:44 ` [PATCH 1/7] ARM: l2x0: add empty l2x0_of_init Rob Herring
2011-09-01 3:36 ` Barry Song
2011-09-01 3:58 ` Rob Herring
2011-09-01 1:44 ` [PATCH v2 2/7] ARM: highbank: add devicetree source Rob Herring
2011-09-01 1:44 ` [PATCH v2 3/7] ARM: add Highbank core platform support Rob Herring
2011-09-01 1:44 ` [PATCH v2 4/7] MAINTAINERS: add Calxeda Highbank ARM platform Rob Herring
2011-09-01 1:44 ` [PATCH v2 5/7] ARM: highbank: add SMP support Rob Herring
2011-09-06 1:01 ` Shawn Guo
2011-10-05 16:00 ` Rob Herring
2011-10-07 12:40 ` Shawn Guo
2011-09-01 1:44 ` [PATCH v2 6/7] ARM: highbank: Add cpu hotplug support Rob Herring
2011-09-01 1:44 ` [PATCH v2 7/7] ARM: highbank: add suspend support Rob Herring
2011-09-01 12:22 ` Shawn Guo
2011-09-01 21:39 ` Rob Herring
2011-09-01 14:00 ` [PATCH v2 0/7] Initial Calxeda Highbank support Jamie Iles
2011-09-26 18:39 ` Rob Herring
2011-09-30 20:31 ` Arnd Bergmann
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=1314841446-11006-1-git-send-email-robherring2@gmail.com \
--to=robherring2@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).