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/6] AT91 fies and new soc & board
Date: Thu, 19 Aug 2010 04:48:11 +0200	[thread overview]
Message-ID: <20100819024811.GG454@game.jcrosoft.org> (raw)

Hi,

	the following patches add the support of the at91sam9261 with the
	ek ref board and the pm9261 from Ronetix

	this also prepare the re-adding of the RM9200 in the mach-at91

  mmccpu: fix typo in AT91_MAIN_CLOCK (2010-08-18 23:21:16 +0800)

are available in the git repository at:
  git://git.jcrosoft.org/barebox.git at91

Jean-Christophe PLAGNIOL-VILLARD (6):
      dm9000: allow to specify that no srom is present
      at91: Introduction of at91sam9261 SOC.
      at91: add Ronetix pm9261 board support
      at91: rename clocksource.c -> at91sam926x_time.c
      macb: introduce HAS_MACB configuration
      at91: remove non used and obsolete at91rm9200 code

 arch/arm/Kconfig                                   |    5 -
 arch/arm/Makefile                                  |    3 +-
 arch/arm/boards/at91sam9261ek/Makefile             |    1 +
 arch/arm/boards/at91sam9261ek/config.h             |  110 +++
 arch/arm/boards/at91sam9261ek/env/bin/_update      |   36 +
 arch/arm/boards/at91sam9261ek/env/bin/boot         |   47 ++
 arch/arm/boards/at91sam9261ek/env/bin/hush_hack    |    1 +
 arch/arm/boards/at91sam9261ek/env/bin/init         |   38 +
 .../at91sam9261ek/env/bin/update_barebox_xmodem    |   26 +
 .../arm/boards/at91sam9261ek/env/bin/update_kernel |   15 +
 arch/arm/boards/at91sam9261ek/env/bin/update_root  |   16 +
 arch/arm/boards/at91sam9261ek/env/config           |   28 +
 arch/arm/boards/at91sam9261ek/init.c               |  170 +++++
 arch/arm/boards/pm9261/Makefile                    |    1 +
 arch/arm/boards/pm9261/config.h                    |  110 +++
 arch/arm/boards/pm9261/env/bin/_update             |   36 +
 arch/arm/boards/pm9261/env/bin/boot                |   47 ++
 arch/arm/boards/pm9261/env/bin/hush_hack           |    1 +
 arch/arm/boards/pm9261/env/bin/init                |   38 +
 .../boards/pm9261/env/bin/update_barebox_xmodem    |   26 +
 arch/arm/boards/pm9261/env/bin/update_kernel       |   15 +
 arch/arm/boards/pm9261/env/bin/update_root         |   16 +
 arch/arm/boards/pm9261/env/config                  |   28 +
 arch/arm/boards/pm9261/init.c                      |  169 +++++
 arch/arm/boards/scb9328/scb9328.c                  |    1 +
 arch/arm/configs/at91sam9261ek_defconfig           |  242 +++++++
 arch/arm/configs/pm9261_defconfig                  |  250 +++++++
 arch/arm/mach-at91/Kconfig                         |   33 +
 arch/arm/mach-at91/Makefile                        |    7 +-
 arch/arm/mach-at91/at91sam9261.c                   |  230 ++++++
 arch/arm/mach-at91/at91sam9261_devices.c           |  169 +++++
 .../{clocksource.c => at91sam926x_time.c}          |    0
 arch/arm/mach-at91/include/mach/at91sam9261.h      |  109 +++
 .../mach-at91/include/mach/at91sam9261_matrix.h    |   64 ++
 arch/arm/mach-at91rm9200/Kconfig                   |   16 -
 arch/arm/mach-at91rm9200/include/mach/AT91RM9200.h |  762 --------------------
 arch/arm/mach-at91rm9200/include/mach/hardware.h   |   78 --
 drivers/net/Kconfig                                |    5 +-
 drivers/net/dm9000.c                               |    6 +-
 include/dm9000.h                                   |    1 +
 40 files changed, 2088 insertions(+), 868 deletions(-)
 create mode 100644 arch/arm/boards/at91sam9261ek/Makefile
 create mode 100644 arch/arm/boards/at91sam9261ek/config.h
 create mode 100644 arch/arm/boards/at91sam9261ek/env/bin/_update
 create mode 100644 arch/arm/boards/at91sam9261ek/env/bin/boot
 create mode 100644 arch/arm/boards/at91sam9261ek/env/bin/hush_hack
 create mode 100644 arch/arm/boards/at91sam9261ek/env/bin/init
 create mode 100644 arch/arm/boards/at91sam9261ek/env/bin/update_barebox_xmodem
 create mode 100644 arch/arm/boards/at91sam9261ek/env/bin/update_kernel
 create mode 100644 arch/arm/boards/at91sam9261ek/env/bin/update_root
 create mode 100644 arch/arm/boards/at91sam9261ek/env/config
 create mode 100644 arch/arm/boards/at91sam9261ek/init.c
 create mode 100644 arch/arm/boards/pm9261/Makefile
 create mode 100644 arch/arm/boards/pm9261/config.h
 create mode 100644 arch/arm/boards/pm9261/env/bin/_update
 create mode 100644 arch/arm/boards/pm9261/env/bin/boot
 create mode 100644 arch/arm/boards/pm9261/env/bin/hush_hack
 create mode 100644 arch/arm/boards/pm9261/env/bin/init
 create mode 100644 arch/arm/boards/pm9261/env/bin/update_barebox_xmodem
 create mode 100644 arch/arm/boards/pm9261/env/bin/update_kernel
 create mode 100644 arch/arm/boards/pm9261/env/bin/update_root
 create mode 100644 arch/arm/boards/pm9261/env/config
 create mode 100644 arch/arm/boards/pm9261/init.c
 create mode 100644 arch/arm/configs/at91sam9261ek_defconfig
 create mode 100644 arch/arm/configs/pm9261_defconfig
 create mode 100644 arch/arm/mach-at91/at91sam9261.c
 create mode 100644 arch/arm/mach-at91/at91sam9261_devices.c
 rename arch/arm/mach-at91/{clocksource.c => at91sam926x_time.c} (100%)
 create mode 100644 arch/arm/mach-at91/include/mach/at91sam9261.h
 create mode 100644 arch/arm/mach-at91/include/mach/at91sam9261_matrix.h
 delete mode 100644 arch/arm/mach-at91rm9200/Kconfig
 delete mode 100644 arch/arm/mach-at91rm9200/include/mach/AT91RM9200.h
 delete mode 100644 arch/arm/mach-at91rm9200/include/mach/hardware.h

Best Regards,
J.

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

             reply	other threads:[~2010-08-19  2:53 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-19  2:48 Jean-Christophe PLAGNIOL-VILLARD [this message]
2010-08-19  2:48 ` [PATCH 1/6] dm9000: allow to specify that no srom is present Jean-Christophe PLAGNIOL-VILLARD
2010-08-19  6:32   ` Sascha Hauer
2010-08-19  6:40   ` [PATCH 1/6 v2] " Jean-Christophe PLAGNIOL-VILLARD
2010-08-19  6:42     ` Jean-Christophe PLAGNIOL-VILLARD
2010-08-19  2:48 ` [PATCH 2/6] at91: Introduction of at91sam9261 SOC Jean-Christophe PLAGNIOL-VILLARD
2010-08-19  6:52   ` Sascha Hauer
2010-08-19 15:42     ` Jean-Christophe PLAGNIOL-VILLARD
2010-08-19  2:48 ` [PATCH 3/6] at91: add Ronetix pm9261 board support Jean-Christophe PLAGNIOL-VILLARD
2010-08-19  2:48 ` [PATCH 4/6] at91: rename clocksource.c -> at91sam926x_time.c Jean-Christophe PLAGNIOL-VILLARD
2010-08-19  2:48 ` [PATCH 5/6] macb: introduce HAS_MACB configuration Jean-Christophe PLAGNIOL-VILLARD
2010-08-19  2:48 ` [PATCH 6/6] at91: remove non used and obsolete at91rm9200 code Jean-Christophe PLAGNIOL-VILLARD

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=20100819024811.GG454@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