All of lore.kernel.org
 help / color / mirror / Atom feed
From: robherring2@gmail.com (Rob Herring)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] Calxeda Highbank platform support
Date: Thu, 13 Oct 2011 22:02:08 -0500	[thread overview]
Message-ID: <4E97A630.3070603@gmail.com> (raw)

Arnd,

Please pull initial support for Calxeda highbank platform. This is based
on my GIC DT binding pull request.

As it appears vmalloc.h and memory.h clean-ups won't make it for 3.2,
this includes those headers. I'll post follow-ups to delete them if they
do in fact go in.

Regards,
Rob

The following changes since commit 8322153302d9bb3fdceda9e0df00d3c69d1964bd:

  ARM: gic: add OF based initialization (2011-10-13 20:40:29 -0500)

are available in the git repository at:

  http://sources.calxeda.com/git/kernel/linux.git hb_for_3.2

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                                  |   16 ++-
 arch/arm/Kconfig.debug                            |    7 +
 arch/arm/Makefile                                 |    1 +
 arch/arm/boot/dts/highbank.dts                    |  198
+++++++++++++++++++++
 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                 |  145 +++++++++++++++
 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     |    1 +
 arch/arm/mach-highbank/lluart.c                   |   34 ++++
 arch/arm/mach-highbank/localtimer.c               |   40 ++++
 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 +-
 30 files changed, 897 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

             reply	other threads:[~2011-10-14  3:02 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-14  3:02 Rob Herring [this message]
2011-10-20 13:10 ` [GIT PULL] Calxeda Highbank platform support 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=4E97A630.3070603@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.