From: Sascha Hauer <s.hauer@pengutronix.de>
To: Andrey Smirnov <andrew.smirnov@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 00/14] AT91, at91sam9x5ek updates (part III/III)
Date: Wed, 29 Mar 2017 08:33:58 +0200 [thread overview]
Message-ID: <20170329063358.biyccahufx6ybfu3@pengutronix.de> (raw)
In-Reply-To: <20170323132358.8539-1-andrew.smirnov@gmail.com>
On Thu, Mar 23, 2017 at 06:23:44AM -0700, Andrey Smirnov wrote:
> Hi everone,
>
> As discussed in original thread [1], here is a last batch of AT91
> related patches. The patches gathered in this set are all related to
> converting of at91sam9x5ek board to multi-image build process and DT.
>
> With exception of a small fix to original "at91sam9x5ek: Convert to
> mult-image build" and a number of comment/commit message rewordings
> the code should mostly be the same as it was in original submission
> [1]
>
> Any feedback is appreciated.
Applied, thanks
Sascha
>
> Thank you,
> Andrey Smirnov
>
> [1] http://lists.infradead.org/pipermail/barebox/2017-March/029337.html
>
> Andrey Smirnov (14):
> at91sam9x5ek: Convert to mult-image build
> at91sam9x5ek: Add CONFIG_KALLSYMS to defconfig
> at91sam9x5ek: Add preliminary device tree support
> at91sam9x5ek: Convert to use DT clock tree
> at91sam9x5ek: Remove at91sam9x5ek_mem_init()
> at91: Enable PINCTRL for SOC_AT91SAM9
> at91sam9x5ek: Configure LEDs in DT
> at91sam9x5ek: Configure I2C via DT
> at91sam9x5ek: Configure MMC in DT
> at91sam9x5ek: Configure SPI in DT
> at91sam9x5ek: Configure 1-wire in DT
> at91sam9x5ek: Configure USB in DT
> at91sam9x5ek: Configure Ethernet in DT
> at91sam9x5ek: Configure NAND in DT
>
> arch/arm/Kconfig | 1 -
> arch/arm/boards/at91sam9x5ek/Makefile | 1 +
> arch/arm/boards/at91sam9x5ek/hw_version.c | 6 +-
> arch/arm/boards/at91sam9x5ek/hw_version.h | 1 -
> arch/arm/boards/at91sam9x5ek/init.c | 226 +++-------------------
> arch/arm/boards/at91sam9x5ek/lowlevel.c | 21 ++
> arch/arm/configs/at91sam9x5ek_defconfig | 8 +-
> arch/arm/dts/Makefile | 2 +
> arch/arm/dts/at91sam9x5ek.dts | 70 +++++++
> arch/arm/mach-at91/Kconfig | 46 +++--
> arch/arm/mach-at91/Makefile | 2 +-
> arch/arm/mach-at91/at91sam9x5.c | 311 ------------------------------
> arch/arm/mach-at91/setup.c | 4 +-
> images/Makefile | 1 +
> images/Makefile.at91 | 7 +
> 15 files changed, 176 insertions(+), 531 deletions(-)
> create mode 100644 arch/arm/boards/at91sam9x5ek/lowlevel.c
> create mode 100644 arch/arm/dts/at91sam9x5ek.dts
> delete mode 100644 arch/arm/mach-at91/at91sam9x5.c
> create mode 100644 images/Makefile.at91
>
> --
> 2.9.3
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2017-03-29 6:34 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-23 13:23 Andrey Smirnov
2017-03-23 13:23 ` [PATCH 01/14] at91sam9x5ek: Convert to mult-image build Andrey Smirnov
2017-04-16 8:24 ` Sam Ravnborg
2017-04-19 9:46 ` Sascha Hauer
2017-03-23 13:23 ` [PATCH 02/14] at91sam9x5ek: Add CONFIG_KALLSYMS to defconfig Andrey Smirnov
2017-03-23 13:23 ` [PATCH 03/14] at91sam9x5ek: Add preliminary device tree support Andrey Smirnov
2017-03-23 13:23 ` [PATCH 04/14] at91sam9x5ek: Convert to use DT clock tree Andrey Smirnov
2017-03-23 13:23 ` [PATCH 05/14] at91sam9x5ek: Remove at91sam9x5ek_mem_init() Andrey Smirnov
2017-03-23 13:23 ` [PATCH 06/14] at91: Enable PINCTRL for SOC_AT91SAM9 Andrey Smirnov
2017-03-23 13:23 ` [PATCH 07/14] at91sam9x5ek: Configure LEDs in DT Andrey Smirnov
2017-03-23 13:23 ` [PATCH 08/14] at91sam9x5ek: Configure I2C via DT Andrey Smirnov
2017-03-23 13:23 ` [PATCH 09/14] at91sam9x5ek: Configure MMC in DT Andrey Smirnov
2017-03-23 13:23 ` [PATCH 10/14] at91sam9x5ek: Configure SPI " Andrey Smirnov
2017-03-23 13:23 ` [PATCH 11/14] at91sam9x5ek: Configure 1-wire " Andrey Smirnov
2017-03-23 13:23 ` [PATCH 12/14] at91sam9x5ek: Configure USB " Andrey Smirnov
2017-03-23 13:23 ` [PATCH 13/14] at91sam9x5ek: Configure Ethernet " Andrey Smirnov
2017-03-23 13:23 ` [PATCH 14/14] at91sam9x5ek: Configure NAND " Andrey Smirnov
2017-03-29 6:33 ` Sascha Hauer [this message]
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=20170329063358.biyccahufx6ybfu3@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=andrew.smirnov@gmail.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