mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Subject: [PATCH 0/3] arm: add ARM Vexpress support
Date: Sun, 10 Feb 2013 16:58:19 +0100	[thread overview]
Message-ID: <20130210155819.GU19322@game.jcrosoft.org> (raw)

Hi,

The following changes since commit e43e1498f65fe03cfc6b2744247eeccf27b26876:

  MIPS: pbl: fix none compression support (2013-02-05 09:43:17 +0100)

are available in the git repository at:

  git://git.jcrosoft.org/barebox.git delivery/vexpress

for you to fetch changes up to eaeedaea725b031507ffa0ac44300116ff6ccd22:

  arm: add vexpress board support (2013-02-10 12:37:28 +0800)

----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (3):
      clocksource: add ARM AMBA SP804 support
      arm: add macro cpu_is_xxx
      arm: add vexpress board support

 arch/arm/Kconfig                               |   10 +++++++++
 arch/arm/Makefile                              |    2 ++
 arch/arm/boards/vexpress/Kconfig               |   10 +++++++++
 arch/arm/boards/vexpress/Makefile              |    4 ++++
 arch/arm/boards/vexpress/config.h              |    5 +++++
 arch/arm/boards/vexpress/env/config            |   38 +++++++++++++++++++++++++++++++++
 arch/arm/boards/vexpress/init.c                |  128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/boards/vexpress/lowlevel.c            |   20 +++++++++++++++++
 arch/arm/configs/vexpress_ca9_defconfig        |   61 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/configs/vexpress_defconfig            |   60 +++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/include/asm/hardware/arm_timer.h      |    5 +++++
 arch/arm/include/asm/hardware/sp810.h          |   68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/include/asm/system_info.h             |   63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/mach-vexpress/Kconfig                 |   18 ++++++++++++++++
 arch/arm/mach-vexpress/Makefile                |    3 +++
 arch/arm/mach-vexpress/devices.c               |   73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/mach-vexpress/include/mach/clkdev.h   |    7 ++++++
 arch/arm/mach-vexpress/include/mach/debug_ll.h |   33 ++++++++++++++++++++++++++++
 arch/arm/mach-vexpress/include/mach/devices.h  |   22 +++++++++++++++++++
 arch/arm/mach-vexpress/reset.c                 |   22 +++++++++++++++++++
 arch/arm/mach-vexpress/v2m.c                   |   85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/clocksource/Kconfig                    |    4 ++++
 drivers/clocksource/Makefile                   |    1 +
 drivers/clocksource/amba-sp804.c               |   89 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 include/linux/amba/sp805.h                     |   32 ++++++++++++++++++++++++++++
 25 files changed, 863 insertions(+)
 create mode 100644 arch/arm/boards/vexpress/Kconfig
 create mode 100644 arch/arm/boards/vexpress/Makefile
 create mode 100644 arch/arm/boards/vexpress/config.h
 create mode 100644 arch/arm/boards/vexpress/env/config
 create mode 100644 arch/arm/boards/vexpress/init.c
 create mode 100644 arch/arm/boards/vexpress/lowlevel.c
 create mode 100644 arch/arm/configs/vexpress_ca9_defconfig
 create mode 100644 arch/arm/configs/vexpress_defconfig
 create mode 100644 arch/arm/include/asm/hardware/sp810.h
 create mode 100644 arch/arm/mach-vexpress/Kconfig
 create mode 100644 arch/arm/mach-vexpress/Makefile
 create mode 100644 arch/arm/mach-vexpress/devices.c
 create mode 100644 arch/arm/mach-vexpress/include/mach/clkdev.h
 create mode 100644 arch/arm/mach-vexpress/include/mach/debug_ll.h
 create mode 100644 arch/arm/mach-vexpress/include/mach/devices.h
 create mode 100644 arch/arm/mach-vexpress/reset.c
 create mode 100644 arch/arm/mach-vexpress/v2m.c
 create mode 100644 drivers/clocksource/amba-sp804.c
 create mode 100644 include/linux/amba/sp805.h

Best Regards,
J.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2013-02-10 15:59 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-10 15:58 Jean-Christophe PLAGNIOL-VILLARD [this message]
2013-02-10 16:02 ` [PATCH 1/3] clocksource: add ARM AMBA SP804 support Jean-Christophe PLAGNIOL-VILLARD
2013-02-10 16:02   ` [PATCH 2/3] arm: add macro cpu_is_xxx Jean-Christophe PLAGNIOL-VILLARD
2013-02-10 16:02   ` [PATCH 3/3] arm: add vexpress board support Jean-Christophe PLAGNIOL-VILLARD
2013-02-11  9:46   ` [PATCH 1/3] clocksource: add ARM AMBA SP804 support Sascha Hauer

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=20130210155819.GU19322@game.jcrosoft.org \
    --to=plagnioj@jcrosoft.com \
    --cc=barebox@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