All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Subject: [PATCH 00/13] at91: cleanup and switch core driver to device/driver
Date: Fri, 28 Dec 2012 20:13:27 +0100	[thread overview]
Message-ID: <20121228191327.GC7216@game.jcrosoft.org> (raw)

HI,

	cleanup base addresses and start to drop AT91_BASE_SYS to allow
	multiple arch at a time

	switch code drivers to device/drivers

	detect soc a at run time

The following changes since commit adbdc7cd87971b126838950e2dc5eaedfff943d7:

  spi: atmel: request cs pin via gpiolib (2012-12-29 00:35:08 +0800)

are available in the git repository at:

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

for you to fetch changes up to 9f7f67ca887b26a4488edf5fa171a78e142e0a5b:

  at91: drop AT91_BASE_PIOx for soc specific one for none boot code (2012-12-29 01:37:47 +0800)

----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (13):
      at91: factorise dbgu address
      at91: enable clock via clock framework
      at91: factoryse PMC address as it's the same on every soc
      at91: pmc: drop AT91_BASE_SYS
      at91: introduce Kconfig to select the dbgu for lowlevel debug
      at91: sync with the kernel address base
      at91: at91sam9: provide its own clkdev for pit
      at91: PIT: switch to platfrom_driver
      at91: autodetect the soc one time at postcore_initcall
      at91: SMC: switch to platfrom_driver
      at91: wdt: drop AT91_SYS_BASE
      at91: introduce AT91SAM9_SMC and AT91SAM9_TIMER
      at91: drop AT91_BASE_PIOx for soc specific one for none boot code

 arch/arm/boards/at91sam9260ek/init.c           |    5 +-
 arch/arm/boards/at91sam9261ek/init.c           |    5 +-
 arch/arm/boards/at91sam9263ek/init.c           |    3 +-
 arch/arm/boards/at91sam9m10g45ek/init.c        |    3 +-
 arch/arm/boards/at91sam9n12ek/init.c           |    5 +-
 arch/arm/boards/at91sam9x5ek/init.c            |    3 +-
 arch/arm/boards/dss11/init.c                   |    9 ++-
 arch/arm/boards/pm9261/init.c                  |    5 +-
 arch/arm/boards/pm9263/init.c                  |    3 +-
 arch/arm/boards/pm9g45/init.c                  |    3 +-
 arch/arm/boards/qil-a9260/init.c               |    3 +-
 arch/arm/boards/tny-a926x/init.c               |    5 +-
 arch/arm/boards/usb-a926x/init.c               |    5 +-
 arch/arm/mach-at91/Kconfig                     |  114 ++++++++++++++++++++++------
 arch/arm/mach-at91/Makefile                    |   21 +++---
 arch/arm/mach-at91/at91rm9200.c                |   25 +++---
 arch/arm/mach-at91/at91rm9200_lowlevel_init.c  |   18 +++--
 arch/arm/mach-at91/at91sam9260.c               |   24 +++---
 arch/arm/mach-at91/at91sam9261.c               |   24 +++---
 arch/arm/mach-at91/at91sam9263.c               |   29 +++----
 arch/arm/mach-at91/at91sam926x_lowlevel_init.c |   28 +++----
 arch/arm/mach-at91/at91sam926x_time.c          |   68 +++++++++++++----
 arch/arm/mach-at91/at91sam9g45.c               |   29 ++++---
 arch/arm/mach-at91/at91sam9n12.c               |   26 +++----
 arch/arm/mach-at91/at91sam9x5.c                |   26 +++----
 arch/arm/mach-at91/clock.c                     |   50 ++++++------
 arch/arm/mach-at91/generic.h                   |   13 ++++
 arch/arm/mach-at91/include/mach/at91_dbgu.h    |   26 +++----
 arch/arm/mach-at91/include/mach/at91_pit.h     |    8 +-
 arch/arm/mach-at91/include/mach/at91_pmc.h     |   48 ++++++------
 arch/arm/mach-at91/include/mach/at91_wdt.h     |    6 +-
 arch/arm/mach-at91/include/mach/at91rm9200.h   |   22 ++++--
 arch/arm/mach-at91/include/mach/at91sam9260.h  |   37 ++++++---
 arch/arm/mach-at91/include/mach/at91sam9261.h  |   34 ++++++---
 arch/arm/mach-at91/include/mach/at91sam9263.h  |   52 ++++++++-----
 arch/arm/mach-at91/include/mach/at91sam9_smc.h |   50 +++++++++---
 arch/arm/mach-at91/include/mach/at91sam9g45.h  |   44 +++++++----
 arch/arm/mach-at91/include/mach/at91sam9n12.h  |   43 +++++++----
 arch/arm/mach-at91/include/mach/at91sam9x5.h   |   43 +++++++----
 arch/arm/mach-at91/include/mach/cpu.h          |  190 ++++++++++++++++++++++------------------------
 arch/arm/mach-at91/include/mach/debug_ll.h     |    6 +-
 arch/arm/mach-at91/include/mach/hardware.h     |    8 ++
 arch/arm/mach-at91/include/mach/sam9_smc.h     |   33 --------
 arch/arm/mach-at91/sam9_smc.c                  |  146 +++++++++++++++++++++++++++++------
 arch/arm/mach-at91/setup.c                     |  226 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/mach-at91/soc.h                       |   66 ++++++++++++++++
 46 files changed, 1127 insertions(+), 513 deletions(-)
 delete mode 100644 arch/arm/mach-at91/include/mach/sam9_smc.h
 create mode 100644 arch/arm/mach-at91/setup.c
 create mode 100644 arch/arm/mach-at91/soc.h

Best Regards,
J.

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

             reply	other threads:[~2012-12-28 19:15 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-28 19:13 Jean-Christophe PLAGNIOL-VILLARD [this message]
2012-12-28 19:16 ` [PATCH 01/13] at91: factorise dbgu address Jean-Christophe PLAGNIOL-VILLARD
2012-12-28 19:16   ` [PATCH 02/13] at91: enable clock via clock framework Jean-Christophe PLAGNIOL-VILLARD
2013-01-02 10:58     ` Sascha Hauer
2012-12-28 19:16   ` [PATCH 03/13] at91: factoryse PMC address as it's the same on every soc Jean-Christophe PLAGNIOL-VILLARD
2013-01-02 11:00     ` Sascha Hauer
2012-12-28 19:16   ` [PATCH 04/13] at91: pmc: drop AT91_BASE_SYS Jean-Christophe PLAGNIOL-VILLARD
2012-12-28 19:16   ` [PATCH 05/13] at91: introduce Kconfig to select the dbgu for lowlevel debug Jean-Christophe PLAGNIOL-VILLARD
2012-12-28 19:16   ` [PATCH 06/13] at91: sync with the kernel address base Jean-Christophe PLAGNIOL-VILLARD
2012-12-28 19:16   ` [PATCH 07/13] at91: at91sam9: provide its own clkdev for pit Jean-Christophe PLAGNIOL-VILLARD
2012-12-28 19:16   ` [PATCH 08/13] at91: PIT: switch to platfrom_driver Jean-Christophe PLAGNIOL-VILLARD
2013-01-02 10:59     ` Sascha Hauer
2012-12-28 19:16   ` [PATCH 09/13] at91: autodetect the soc one time at postcore_initcall Jean-Christophe PLAGNIOL-VILLARD
2012-12-28 19:16   ` [PATCH 10/13] at91: SMC: switch to platfrom_driver Jean-Christophe PLAGNIOL-VILLARD
2013-01-02 10:59     ` Sascha Hauer
2012-12-28 19:16   ` [PATCH 11/13] at91: wdt: drop AT91_SYS_BASE Jean-Christophe PLAGNIOL-VILLARD
2012-12-28 19:16   ` [PATCH 12/13] at91: introduce AT91SAM9_SMC and AT91SAM9_TIMER Jean-Christophe PLAGNIOL-VILLARD
2012-12-28 19:16   ` [PATCH 13/13] at91: drop AT91_BASE_PIOx for soc specific one for none boot code Jean-Christophe PLAGNIOL-VILLARD
2013-01-02 10:07 ` [PATCH 00/13] at91: cleanup and switch core driver to device/driver 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=20121228191327.GC7216@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 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.