mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sam Ravnborg <sam@ravnborg.org>
To: Barebox List <barebox@lists.infradead.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Subject: [PATCH v2 0/23] at91: move reset vector to board code
Date: Fri, 7 Jul 2017 14:10:00 +0200	[thread overview]
Message-ID: <20170707121000.GA16920@ravnborg.org> (raw)

The following patchset moves the reset vector
for at91 boards from mach-at91 to board code.
This is similar to what other boards do and is done to
prepare for multi-image and DT support.

The patchset convert all boards and thus clean up the
old code that resided in mach-at91/

The first patch have minimal impact, but prepares for a
board-by-board conversion.
All temporary CONFIG symbols are gone at the end of this series.

I kept Jean-Christophe PLAGNIOL-VILLARD and others
copyright in all the created files and did not add
copyright myself. The patchset does IMO not add any
copyrightable material from my side as this is
in reality just moving around code.

The patchset was successfully booted on a AT91SAM9263EK,
and all defconfigs was built (expect the ones that failed
to build before this patchset was applied).

Changes v1 => v2
- converted all boards over
- fixed author info

	Sam


Sam Ravnborg (23):
      at91: refactor lowlevel_init selection
      at91: drop unused at91sam9x5_lowlevel_init.c
      at91sam9263ek: move reset vector to board code
      at91sam9261ek, at91sam9g10ek: move reset vector to board code
      pm9261: move reset vector to board code
      at91: drop unused at91sam9261_lowlevel_init
      mmccpu: move reset vector to board code
      pm9263: move reset vector to board code
      usb-a926x: move reset vector to board code
      at91: delete at91sam926x_lowlevel_init
      tny-a926x: move reset vector to board code
      qil-a926x: move reset vector to board code
      haba-knx: move reset vector to board code
      at91: delete unused at91sam9263_lowlevel_init.c
      sama5d{3,4}{xek,xplained}: move reset vector to board code
      at91sam{9260,9G20,9m10g45,9n12}ek: move reset vector to board code
      at91rm9200ek: move reset vector to board code
      at91sam9m10ihd: move reset vector to board code
      pm9g45: move reset vector to board code
      animeo: move reset vector to board code
      dss11: move reset vector to board code
      telit-evk-pro3: move reset vector to board code
      at91: remove leftovers from reset code in mach-at91

 arch/arm/boards/animeo_ip/Makefile                 |   1 +
 arch/arm/boards/animeo_ip/lowlevel.c               |  26 ++++
 arch/arm/boards/at91rm9200ek/Makefile              |   1 +
 .../at91rm9200ek/lowlevel.c}                       |  16 +--
 arch/arm/boards/at91sam9260ek/Makefile             |   1 +
 arch/arm/boards/at91sam9260ek/lowlevel.c           |  26 ++++
 arch/arm/boards/at91sam9261ek/Makefile             |   2 +-
 arch/arm/boards/at91sam9261ek/lowlevel_init.c      |  41 +++++--
 arch/arm/boards/at91sam9263ek/Makefile             |   2 +-
 arch/arm/boards/at91sam9263ek/lowlevel_init.c      |  43 +++++--
 arch/arm/boards/at91sam9m10g45ek/Makefile          |   1 +
 .../at91sam9m10g45ek/lowlevel.c}                   |  11 +-
 arch/arm/boards/at91sam9m10ihd/Makefile            |   2 +
 .../at91sam9m10ihd/lowlevel.c}                     |  19 ++-
 arch/arm/boards/at91sam9n12ek/Makefile             |   1 +
 .../at91sam9n12ek/lowlevel.c}                      |  13 +-
 arch/arm/boards/dss11/Makefile                     |   1 +
 arch/arm/boards/dss11/lowlevel.c                   |  26 ++++
 arch/arm/boards/haba-knx/Makefile                  |   3 +
 arch/arm/boards/haba-knx/lowlevel.c                |  26 ++++
 arch/arm/boards/mmccpu/Makefile                    |   2 +-
 arch/arm/boards/mmccpu/lowlevel.c                  |  26 ++++
 arch/arm/boards/mmccpu/lowlevel_init.c             | 135 ---------------------
 arch/arm/boards/pm9261/Makefile                    |   2 +-
 arch/arm/boards/pm9261/lowlevel_init.c             |  39 ++++--
 arch/arm/boards/pm9263/Makefile                    |   2 +-
 arch/arm/boards/pm9263/lowlevel_init.c             |  43 +++++--
 arch/arm/boards/pm9g45/Makefile                    |   1 +
 arch/arm/boards/pm9g45/lowlevel.c                  |  24 ++++
 arch/arm/boards/qil-a926x/Makefile                 |   3 +
 arch/arm/boards/qil-a926x/lowlevel.c               |  26 ++++
 arch/arm/boards/sama5d3_xplained/Makefile          |   1 +
 .../sama5d3_xplained/lowlevel.c}                   |  10 +-
 arch/arm/boards/sama5d3xek/Makefile                |   1 +
 arch/arm/boards/sama5d3xek/lowlevel.c              |  23 ++++
 arch/arm/boards/sama5d4_xplained/Makefile          |   1 +
 arch/arm/boards/sama5d4_xplained/lowlevel.c        |  23 ++++
 arch/arm/boards/sama5d4ek/Makefile                 |   1 +
 arch/arm/boards/sama5d4ek/lowlevel.c               |  23 ++++
 arch/arm/boards/telit-evk-pro3/Makefile            |   1 +
 arch/arm/boards/telit-evk-pro3/lowlevel.c          |  26 ++++
 arch/arm/boards/tny-a926x/Makefile                 |   9 +-
 arch/arm/boards/tny-a926x/tny_a9260_lowlevel.c     |  26 ++++
 arch/arm/boards/tny-a926x/tny_a9263_lowlevel.c     |  26 ++++
 .../arm/boards/tny-a926x/tny_a9263_lowlevel_init.c | 107 ----------------
 arch/arm/boards/usb-a926x/Makefile                 |   8 +-
 arch/arm/boards/usb-a926x/usb_a9260_lowlevel.c     |  26 ++++
 ..._a9263_lowlevel_init.c => usb_a9263_lowlevel.c} |  43 +++++--
 arch/arm/mach-at91/Kconfig                         |  22 ++--
 arch/arm/mach-at91/Makefile                        |  12 --
 arch/arm/mach-at91/at91sam9260_lowlevel_init.c     |  48 --------
 arch/arm/mach-at91/at91sam9261_lowlevel_init.c     |  48 --------
 arch/arm/mach-at91/at91sam9263_lowlevel_init.c     |  48 --------
 .../mach-at91/include/mach/at91_lowlevel_init.h    |  46 -------
 .../mach/at91sam926x_board_init.h}                 |  63 ++++++----
 55 files changed, 622 insertions(+), 585 deletions(-)

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

             reply	other threads:[~2017-07-07 12:10 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-07 12:10 Sam Ravnborg [this message]
2017-07-07 12:12 ` [PATCH 01/23] at91: refactor lowlevel_init selection Sam Ravnborg
2017-07-07 12:12 ` [PATCH 02/23] at91: drop unused at91sam9x5_lowlevel_init.c Sam Ravnborg
2017-07-07 12:12 ` [PATCH 03/23] at91sam9263ek: move reset vector to board code Sam Ravnborg
2017-07-07 12:12 ` [PATCH 04/23] at91sam9261ek, at91sam9g10ek: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 05/23] pm9261: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 06/23] at91: drop unused at91sam9261_lowlevel_init Sam Ravnborg
2017-07-07 12:12 ` [PATCH 07/23] mmccpu: move reset vector to board code Sam Ravnborg
2017-07-07 12:12 ` [PATCH 08/23] pm9263: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 09/23] usb-a926x: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 10/23] at91: delete at91sam926x_lowlevel_init Sam Ravnborg
2017-07-07 12:12 ` [PATCH 11/23] tny-a926x: move reset vector to board code Sam Ravnborg
2017-07-07 12:12 ` [PATCH 12/23] qil-a926x: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 13/23] haba-knx: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 14/23] at91: delete unused at91sam9263_lowlevel_init.c Sam Ravnborg
2017-07-07 12:12 ` [PATCH 15/23] sama5d{3, 4}{xek, xplained}: move reset vector to board code Sam Ravnborg
2017-07-07 12:12 ` [PATCH 16/23] at91sam{9260, 9G20, 9m10g45, 9n12}ek: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 17/23] at91rm9200ek: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 18/23] at91sam9m10ihd: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 19/23] pm9g45: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 20/23] animeo: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 21/23] dss11: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 22/23] telit-evk-pro3: " Sam Ravnborg
2017-07-07 12:12 ` [PATCH 23/23] at91: remove leftovers from reset code in mach-at91 Sam Ravnborg
2017-07-17  9:52 ` [PATCH v2 0/23] at91: move reset vector to board code Lucas Stach
2017-07-17 11:41   ` Sam Ravnborg

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=20170707121000.GA16920@ravnborg.org \
    --to=sam@ravnborg.org \
    --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