From: Albert ARIBAUD <albert.u.boot@aribaud.net>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PULL] u-boot-pxa / master
Date: Mon, 05 Dec 2011 18:00:33 +0100 [thread overview]
Message-ID: <4EDCF8B1.4010304@aribaud.net> (raw)
In-Reply-To: <201112021111.10327.marek.vasut@gmail.com>
Hi Marek,
Le 02/12/2011 11:11, Marek Vasut a ?crit :
> I see no comments on my patchset for a while, so:
>
> The following changes since commit f2695a272849764cda09bcce6f86d03105e9e46d:
>
> PXA: Drop XM250 board (2011-11-25 20:44:24 +0100)
>
> are available in the git repository at:
> git://git.denx.de/u-boot-pxa.git master
>
> Marek Vasut (19):
> PXA: Rework start.S to be closer to other ARMs
> PXA: Re-add the Dcache locking as RAM for pxa250
> PXA: Fixup PXA25x boards after start.S update
> PXA: Drop Voipac PXA270 OneNAND IPL
> PXA: Adapt Voipac PXA270 to OneNAND SPL
> PXA: Enable command line editing for vpac270
> PXA: Unify vpac270 environment size
> PXA: Rename CONFIG_PXA2[57]X to CONFIG_CPU_PXA2[57]X
> PXA: Separate PXA2xx CPU init
> PXA: Add cpuinfo display for PXA2xx
> PXA: Replace timer driver
> PXA: Cleanup Colibri PXA270
> PXA: Export cpu_is_ and pxa_dram_init functions
> PXA: Squash extern pxa_dram_init()
> PXA: Rename pxa_dram_init to pxa2xx_dram_init
> PXA: Introduce common configuration header for PXA
> PXA: Flip colibri_pxa27x to pxa-common.h
> PXA: Move colibri_pxa270 to board/toradex/
> GCC4.6: PXA: Squash warning in xaeniax
>
> arch/arm/cpu/pxa/Makefile | 7 +-
> arch/arm/cpu/pxa/cpuinfo.c | 132 ++++++
> arch/arm/cpu/pxa/{cpu.c => pxa2xx.c} | 119 ++----
> arch/arm/cpu/pxa/start.S | 456 ++++++++++----------
> arch/arm/cpu/pxa/timer.c | 91 ++---
> arch/arm/cpu/pxa/u-boot.lds | 6 +
> arch/arm/cpu/pxa/usb.c | 12 +-
> arch/arm/include/asm/arch-pxa/pxa-regs.h | 48 +-
> .../arm/include/asm/arch-pxa/pxa.h | 31 +-
> board/balloon3/balloon3.c | 4 +-
> board/lubbock/lubbock.c | 4 +-
> board/palmld/palmld.c | 4 +-
> board/palmtc/palmtc.c | 4 +-
> board/pxa255_idp/pxa_idp.c | 4 +-
> board/{ => toradex}/colibri_pxa270/Makefile | 0
> .../{ => toradex}/colibri_pxa270/colibri_pxa270.c | 36 +-
> board/trizepsiv/conxs.c | 4 +-
> board/vpac270/Makefile | 4 +
> board/vpac270/onenand.c | 65 +++
> board/vpac270/u-boot-spl.lds | 92 ++++
> board/vpac270/vpac270.c | 6 +-
> board/xaeniax/flash.c | 7 +-
> board/xaeniax/xaeniax.c | 4 +-
> board/zipitz2/zipitz2.c | 4 +-
> boards.cfg | 2 +-
> common/lcd.c | 14 +-
> drivers/mmc/pxa_mmc.c | 7 +-
> drivers/mmc/pxa_mmc_gen.c | 4 +-
> drivers/net/lan91c96.h | 4 +-
> drivers/net/smc91111.h | 6 +-
> drivers/serial/serial_pxa.c | 4 +-
> drivers/serial/usbtty.h | 2 +-
> drivers/usb/gadget/Makefile | 2 +-
> include/configs/balloon3.h | 2 +-
> include/configs/colibri_pxa270.h | 103 ++---
> include/configs/lubbock.h | 4 +-
> include/configs/palmld.h | 2 +-
> include/configs/palmtc.h | 4 +-
> include/configs/pxa-common.h | 60 +++
> include/configs/pxa255_idp.h | 4 +-
> include/configs/trizepsiv.h | 2 +-
> include/configs/vpac270.h | 43 ++-
> include/configs/xaeniax.h | 4 +-
> include/configs/zipitz2.h | 2 +-
> include/lcd.h | 5 +-
> onenand_ipl/board/vpac270/Makefile | 79 ----
> onenand_ipl/board/vpac270/config.mk | 1 -
> onenand_ipl/board/vpac270/u-boot.onenand.lds | 51 ---
> 48 files changed, 851 insertions(+), 704 deletions(-)
> create mode 100644 arch/arm/cpu/pxa/cpuinfo.c
> rename arch/arm/cpu/pxa/{cpu.c => pxa2xx.c} (76%)
> rename onenand_ipl/board/vpac270/vpac270.c => arch/arm/include/asm/arch-
> pxa/pxa.h (54%)
> rename board/{ => toradex}/colibri_pxa270/Makefile (100%)
> rename board/{ => toradex}/colibri_pxa270/colibri_pxa270.c (81%)
> create mode 100644 board/vpac270/onenand.c
> create mode 100644 board/vpac270/u-boot-spl.lds
> create mode 100644 include/configs/pxa-common.h
> delete mode 100644 onenand_ipl/board/vpac270/Makefile
> delete mode 100644 onenand_ipl/board/vpac270/config.mk
> delete mode 100644 onenand_ipl/board/vpac270/u-boot.onenand.lds
Applied to u-boot-arm/master, thanks!
Amicalement,
--
Albert.
next prev parent reply other threads:[~2011-12-05 17:00 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-25 18:56 [U-Boot] [PULL] u-boot-pxa / master Marek Vasut
2011-11-25 19:46 ` Albert ARIBAUD
2011-11-25 19:50 ` Albert ARIBAUD
2011-11-25 20:28 ` Marek Vasut
2011-11-25 20:42 ` Anatolij Gustschin
2011-11-25 21:13 ` Marek Vasut
2011-11-25 21:29 ` Albert ARIBAUD
2011-11-25 22:04 ` Anatolij Gustschin
2011-12-02 10:11 ` Marek Vasut
2011-12-05 17:00 ` Albert ARIBAUD [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-11-12 2:44 Marek Vasut
2011-11-15 21:25 ` 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=4EDCF8B1.4010304@aribaud.net \
--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