mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Bo Shen <voice.shen@atmel.com>
To: s.hauer@pengutronix.de
Cc: barebox@lists.infradead.org
Subject: [PATCH 0/9] ARM: at91: add sama5d4ek board support
Date: Wed, 17 Sep 2014 18:21:26 +0800	[thread overview]
Message-ID: <1410949295-30296-1-git-send-email-voice.shen@atmel.com> (raw)

This patch series add Atmel new SoC SAMA5D4 support, which embedded
the Cortex-A5 core.
This patch series also add the EK board base on SAMA5D4 SoC support.


Bo Shen (9):
  ARM: at91: move pmc base address into soc header
  ARM: atmel: sama5d3 is a family member of sama5
  ARM: at91: clock: use cpu_has_pcr for pcr1 checking
  nand: atmel: runtime to generate galois table
  net: macb: using default value for FBLDO
  mci: atmel: add new ip version 0x600 support
  ARM: at91: add sama5d4 soc support #1
  ARM: at91: add sama5d4 soc support #2
  ARM: at91: add sama5d4ek board support

 arch/arm/boards/Makefile                      |   1 +
 arch/arm/boards/sama5d4ek/Makefile            |   1 +
 arch/arm/boards/sama5d4ek/env/bin/init_board  |  15 +
 arch/arm/boards/sama5d4ek/env/config          |  42 +++
 arch/arm/boards/sama5d4ek/init.c              | 311 ++++++++++++++++
 arch/arm/configs/sama5d4ek_defconfig          |  85 +++++
 arch/arm/mach-at91/Kconfig                    |  26 ++
 arch/arm/mach-at91/Makefile                   |   2 +
 arch/arm/mach-at91/clock.c                    |  72 +++-
 arch/arm/mach-at91/clock.h                    |   2 +-
 arch/arm/mach-at91/include/mach/at91_pmc.h    |   1 +
 arch/arm/mach-at91/include/mach/at91rm9200.h  |   1 +
 arch/arm/mach-at91/include/mach/at91sam9260.h |   2 +
 arch/arm/mach-at91/include/mach/at91sam9261.h |   1 +
 arch/arm/mach-at91/include/mach/at91sam9263.h |   2 +
 arch/arm/mach-at91/include/mach/at91sam9g45.h |   2 +
 arch/arm/mach-at91/include/mach/at91sam9n12.h |   1 +
 arch/arm/mach-at91/include/mach/at91sam9x5.h  |   1 +
 arch/arm/mach-at91/include/mach/cpu.h         |  30 +-
 arch/arm/mach-at91/include/mach/hardware.h    |   6 +-
 arch/arm/mach-at91/include/mach/sama5d3.h     |   2 +
 arch/arm/mach-at91/include/mach/sama5d4.h     | 134 +++++++
 arch/arm/mach-at91/sam9_smc.c                 |   6 +-
 arch/arm/mach-at91/sama5d4.c                  | 303 ++++++++++++++++
 arch/arm/mach-at91/sama5d4_devices.c          | 495 ++++++++++++++++++++++++++
 arch/arm/mach-at91/setup.c                    |  43 ++-
 arch/arm/mach-at91/soc.h                      |   7 +-
 drivers/mci/atmel_mci.c                       |   1 +
 drivers/mtd/nand/atmel_nand.c                 | 121 ++++++-
 drivers/net/macb.c                            |   1 -
 30 files changed, 1680 insertions(+), 37 deletions(-)
 create mode 100644 arch/arm/boards/sama5d4ek/Makefile
 create mode 100644 arch/arm/boards/sama5d4ek/env/bin/init_board
 create mode 100644 arch/arm/boards/sama5d4ek/env/config
 create mode 100644 arch/arm/boards/sama5d4ek/init.c
 create mode 100644 arch/arm/configs/sama5d4ek_defconfig
 create mode 100644 arch/arm/mach-at91/include/mach/sama5d4.h
 create mode 100644 arch/arm/mach-at91/sama5d4.c
 create mode 100644 arch/arm/mach-at91/sama5d4_devices.c

-- 
2.1.0.24.g4109c28


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

             reply	other threads:[~2014-09-17 10:22 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-17 10:21 Bo Shen [this message]
2014-09-17 10:21 ` [PATCH 1/9] ARM: at91: move pmc base address into soc header Bo Shen
2014-09-17 10:21 ` [PATCH 2/9] ARM: atmel: sama5d3 is a family member of sama5 Bo Shen
2014-09-17 10:21 ` [PATCH 3/9] ARM: at91: clock: use cpu_has_pcr for pcr1 checking Bo Shen
2014-09-17 10:21 ` [PATCH 4/9] nand: atmel: runtime to generate galois table Bo Shen
2014-09-17 10:21 ` [PATCH 5/9] net: macb: using default value for FBLDO Bo Shen
2014-09-22  4:59   ` Sascha Hauer
2014-09-22  5:08     ` Bo Shen
2014-09-17 10:21 ` [PATCH 6/9] mci: atmel: add new ip version 0x600 support Bo Shen
2014-09-17 10:21 ` [PATCH 7/9] ARM: at91: add sama5d4 soc support #1 Bo Shen
2014-09-18  6:10   ` Sascha Hauer
2014-09-23  3:02     ` Bo Shen
2014-09-23  7:54       ` Sascha Hauer
2014-09-17 10:21 ` [PATCH 8/9] ARM: at91: add sama5d4 soc support #2 Bo Shen
2014-09-13 20:12   ` Raphaël Poggi
2014-09-18  1:43     ` Bo Shen
2014-09-17 10:21 ` [PATCH 9/9] ARM: at91: add sama5d4ek board support Bo Shen
2014-09-22  5:02 ` [PATCH 0/9] " 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=1410949295-30296-1-git-send-email-voice.shen@atmel.com \
    --to=voice.shen@atmel.com \
    --cc=barebox@lists.infradead.org \
    --cc=s.hauer@pengutronix.de \
    /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