From: Albert ARIBAUD <albert.u.boot@aribaud.net>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
Date: Mon, 2 Dec 2013 16:51:42 +0100 [thread overview]
Message-ID: <20131202165142.03d37c4f@lilith> (raw)
In-Reply-To: <1385934613-29764-1-git-send-email-andreas.devel@googlemail.com>
Hi Andreas,
On Sun, 1 Dec 2013 22:50:12 +0100, Andreas Bie?mann
<andreas.devel@googlemail.com> wrote:
> Dear Albert Aribaud,
>
> please pull u-boot-atmel/master into u-boot-arm/master.
> This PR supersedes http://patchwork.ozlabs.org/patch/291044/
>
> The following changes since commit 56eb3da43fab5990a4b7bc118b76c7cae2ceb140:
>
> arm, am335x: update for the siemens boards (2013-11-12 09:53:59 -0500)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-atmel.git master
>
> for you to fetch changes up to d07e2b598a690d6eb75019b379fc4933affe3d2c:
>
> arm: atmel: eb_cpux9k2: config clean up (2013-12-01 22:38:53 +0100)
>
> ----------------------------------------------------------------
> Andreas Bie?mann (6):
> video: remove AT91 legacy API from bus_vcxk
> i2c: switch from AT91 legacy to ATMEL legacy
> at91sam9m10g45ek: remove unused CONFIG_AT91_LEGACY
> snapper9260: remove unused AT91_LEGACY
> net: remove unused CONFIG_AT91_LEGACY
> at91: remove all occourances of CONFIG_AT91_LEGACY
>
> Bo Shen (8):
> arm: atmel: sama5d3: correct the ID for DBGU and PIT
> arm: at91: pm9261: remove undefined bit in mckr
> arm: atmel: sama5d3: correct the error define of DIV
> arm: atmel: sama5d3: the offset of MULA is 18
> arm: atmel: sama5d3: early enable PIO peripherals
> arm: atmel: add ddr2 initialization function
> arm: atmel: sama5d3: spl boot from fat fs SD card
> arm: atmel: sam9m10g45ek: let CONFIG_SYS_NO_FLASH at proper position
>
> Heiko Schocher (1):
> arm926ejs, at91: add common phy_reset function
>
> Jens Scharsig (BuS Elektronik) (1):
> arm: atmel: eb_cpux9k2: config clean up
>
> Wu, Josh (1):
> ARM: at91: sama5d3: add support for sama5d36 chip
>
> arch/arm/cpu/Makefile | 1 +
> arch/arm/cpu/armv7/Makefile | 2 +-
> arch/arm/cpu/armv7/at91/sama5d3_devices.c | 6 +-
> arch/arm/cpu/armv7/at91/timer.c | 2 +-
> arch/arm/cpu/at91-common/Makefile | 12 +++
> arch/arm/cpu/at91-common/mpddrc.c | 124 +++++++++++++++++++++++
> arch/arm/cpu/at91-common/phy.c | 57 +++++++++++
> arch/arm/cpu/at91-common/spl.c | 90 ++++++++++++++++
> arch/arm/cpu/at91-common/u-boot-spl.lds | 50 +++++++++
> arch/arm/include/asm/arch-at91/at91_common.h | 5 +
> arch/arm/include/asm/arch-at91/at91_pio.h | 33 ------
> arch/arm/include/asm/arch-at91/at91_pit.h | 16 ---
> arch/arm/include/asm/arch-at91/at91_pmc.h | 59 ++---------
> arch/arm/include/asm/arch-at91/at91_spi.h | 2 +-
> arch/arm/include/asm/arch-at91/at91_wdt.h | 21 ----
> arch/arm/include/asm/arch-at91/at91cap9.h | 69 -------------
> arch/arm/include/asm/arch-at91/at91sam9_smc.h | 60 -----------
> arch/arm/include/asm/arch-at91/atmel_mpddrc.h | 115 +++++++++++++++++++++
> arch/arm/include/asm/arch-at91/sama5d3.h | 3 +
> arch/arm/include/asm/arch-at91/spl.h | 20 ++++
> board/BuS/vl_ma2sc/vl_ma2sc.c | 18 +---
> board/afeb9260/afeb9260.c | 18 +---
> board/atmel/at91sam9260ek/at91sam9260ek.c | 19 +---
> board/atmel/at91sam9263ek/at91sam9263ek.c | 19 +---
> board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c | 19 +---
> board/atmel/sama5d3xek/sama5d3xek.c | 91 +++++++++++++++++
> board/bluewater/snapper9260/snapper9260.c | 16 +--
> board/calao/sbc35_a9g20/sbc35_a9g20.c | 19 +---
> board/eukrea/cpu9260/cpu9260.c | 18 +---
> board/taskit/stamp9g20/stamp9g20.c | 31 +-----
> doc/README.at91-soc | 7 ++
> drivers/i2c/soft_i2c.c | 2 +-
> drivers/net/at91_emac.c | 9 --
> drivers/video/bus_vcxk.c | 15 ---
> include/configs/afeb9260.h | 2 +-
> include/configs/at91sam9260ek.h | 1 +
> include/configs/at91sam9263ek.h | 1 +
> include/configs/at91sam9m10g45ek.h | 9 +-
> include/configs/cpu9260.h | 1 +
> include/configs/eb_cpux9k2.h | 4 -
> include/configs/pm9261.h | 6 +-
> include/configs/sama5d3xek.h | 34 +++++++
> include/configs/sbc35_a9g20.h | 1 +
> include/configs/snapper9260.h | 2 +-
> include/configs/stamp9g20.h | 1 +
> include/configs/vl_ma2sc.h | 1 +
> include/i2c.h | 2 +-
> 47 files changed, 655 insertions(+), 458 deletions(-)
> create mode 100644 arch/arm/cpu/at91-common/Makefile
> create mode 100644 arch/arm/cpu/at91-common/mpddrc.c
> create mode 100644 arch/arm/cpu/at91-common/phy.c
> create mode 100644 arch/arm/cpu/at91-common/spl.c
> create mode 100644 arch/arm/cpu/at91-common/u-boot-spl.lds
> create mode 100644 arch/arm/include/asm/arch-at91/atmel_mpddrc.h
> create mode 100644 arch/arm/include/asm/arch-at91/spl.h
Applied to u-boot-arm/master, thanks! And apologies for the delay.
Amicalement,
--
Albert.
next prev parent reply other threads:[~2013-12-02 15:51 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-01 21:50 [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master Andreas Bießmann
2013-12-02 15:51 ` Albert ARIBAUD [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-10-10 20:00 Andreas Bießmann
2014-10-11 22:58 ` Albert ARIBAUD
2014-09-19 6:32 Andreas Bießmann
2014-09-21 14:56 ` Albert ARIBAUD
2014-06-14 16:19 Andreas Bießmann
2014-06-24 19:16 ` Albert ARIBAUD
2014-05-26 22:16 Andreas Bießmann
2014-05-30 17:45 ` Albert ARIBAUD
2014-03-09 18:50 Andreas Bießmann
2014-03-10 8:09 ` Albert ARIBAUD
2013-12-17 16:25 Andreas Bießmann
2013-12-18 16:47 ` Albert ARIBAUD
2013-12-09 12:42 Andreas Bießmann
2013-12-09 17:56 ` Albert ARIBAUD
2013-11-13 21:24 Andreas Bießmann
2013-11-22 6:35 ` Albert ARIBAUD
2013-11-04 19:43 Andreas Bießmann
2013-11-05 21:30 ` Albert ARIBAUD
2013-09-19 8:31 Andreas Bießmann
2013-09-21 10:38 ` Albert ARIBAUD
2013-09-04 15:15 Andreas Bießmann
2013-09-05 10:16 ` Albert ARIBAUD
2013-08-22 15:04 Andreas Bießmann
2013-09-03 2:54 ` Bo Shen
2013-09-04 9:40 ` Andreas Bießmann
2013-09-04 11:10 ` Albert ARIBAUD
2013-09-04 11:49 ` Andreas Bießmann
2013-09-04 10:30 ` Albert ARIBAUD
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=20131202165142.03d37c4f@lilith \
--to=albert.u.boot@aribaud.net \
--cc=u-boot@lists.denx.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