public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Heiko Schocher <hs@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [v3 PATCH 0/12] arm, at91, spl: add spl support for the taurus and corvus boards
Date: Thu, 06 Nov 2014 08:10:10 +0100	[thread overview]
Message-ID: <545B1ED2.7000600@denx.de> (raw)
In-Reply-To: <545ABFAA.9070002@googlemail.com>

Hello Andreas,

Am 06.11.2014 01:24, schrieb Andreas Bie?mann:
> Hi Heiko,
>
> On 31.10.14 08:30, Heiko Schocher wrote:
>>
>> This patchset add SPL support for the AT91SAM9G20 based taurus board,
>> and the AT91SAM9M10G45 based corvus board from siemens, and replaces
>> the at91bootstrap code.
>>
>> The boot.bin which replaces the at91bootstrap image can created with
>> mkimage:
>>
>> ./tools/mkimage -T atmelimage -d spl/u-boot-spl.bin spl/boot.bin
>>
>> For other SoC this step is done in one step ... should we add this
>> also for AT91 based boards?
>>
>> For example add a "u-boot.at91" target in the Makefile?
>>
>> This patchset is based on the common updates for the taurus
>> and corvus board:
>>
>> Patchwork [U-Boot] arm, at91: add generic board support for the taurus and corvus board
>> http://patchwork.ozlabs.org/patch/395398/
>> (now in mainline)
>>
>> Patchwork [U-Boot] arm, at91: add spi dataflash support for the taurus board
>> http://patchwork.ozlabs.org/patch/395400/
>>
>>
>> Changes in v3:
>> rebased against 571bdf16a78e9e116a93d46f4809c4f8a3f2adb6
>> add Reviewed-by from Bo Shen
>> add Acked-by from Scott Wood
>> add comment from Bo shen
>> - ignore 80 characters length as Bo Shen and Adreas Biessmann suggested
>> - fix AT91_PMC_MCKR_CSS_MASK and AT91_PMC_MCKR_PRES_MASK
>> - make matrix_init weak, and add it in the taurus board code
>> - do not introduce ifdef mess for the differences between the SoCs,
>>    instead use a seperate file for each SoC:
>>    - for armv5 (arm926ejs, now at91 series), named it spl_at91.c,
>>    - for armv7 (cortex-a5, now, sama5d3), named it spl_atmel.c
>>    - move common code to arch/arm/cpu/at91-common/spl.c
>>
>> Changes in v2:
>>    - rebased against d58a9451e7339ed4cf2b2627e534611f427fb791
>>    - spi, atmel: move CONFIG_SYS_SPI_WRITE_TOUT into common header
>>      new in v2
>>    - add comment from Jagan Teki:
>>      - remove spi_init_f() from board file
>>      - remove CONFIG_SYS_SPI_WRITE_TOUT from board config file
>>        instead define a default in the spi driver ->  new patch for v2
>>    - add Reviewed-by: Andreas Bie?mann<andreas.devel@googlemail.com>
>>    - add comment from Andreas Biessmann:
>>      rename "MPDDRC_CR_EBISHARE" to "MPDDRC_CR_DQMS_SHARED"
>>    - add comment from scott wood:
>>      move nand_erase_one into "include/nand.h" and rename it
>>      to spl_nand_erase_one
>
> for me this series looks good. Lets wait for Jagan's Ok for '[v3 PATCH
> 02/12] arm, at91: add spi dataflash support for the taurus board', then
> I'll apply it this weekend or so.

Thanks for this info!

bye,
Heiko
-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

      reply	other threads:[~2014-11-06  7:10 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-31  7:30 [U-Boot] [v3 PATCH 0/12] arm, at91, spl: add spl support for the taurus and corvus boards Heiko Schocher
2014-10-31  7:30 ` [U-Boot] [v3 PATCH 01/12] spi, atmel: move CONFIG_SYS_SPI_WRITE_TOUT into common header Heiko Schocher
2014-10-31 11:18   ` Jagan Teki
2014-11-06  0:22   ` Andreas Bießmann
2014-11-17 12:15   ` [U-Boot] [U-Boot, v3, " Andreas Bießmann
2014-10-31  7:30 ` [U-Boot] [v3 PATCH 02/12] arm, at91: add spi dataflash support for the taurus board Heiko Schocher
2014-10-31 10:48   ` Jagan Teki
2014-10-31 12:31     ` Heiko Schocher
2014-11-05 23:36       ` Andreas Bießmann
2014-11-06  6:48         ` Jagan Teki
2014-11-05 23:26   ` Andreas Bießmann
2014-11-17 12:15   ` [U-Boot] [U-Boot, v3, " Andreas Bießmann
2014-10-31  7:30 ` [U-Boot] [v3 PATCH 03/12] arm, at91, mpddrc: fix typo in ddr2_init() Heiko Schocher
2014-11-17 12:15   ` [U-Boot] [U-Boot,v3,03/12] " Andreas Bießmann
2014-10-31  7:30 ` [U-Boot] [v3 PATCH 04/12] arm, at91: compile mpddrc ram init code also for AT91SAM9M10G45 Heiko Schocher
2014-11-17 12:15   ` [U-Boot] [U-Boot, v3, " Andreas Bießmann
2014-10-31  7:30 ` [U-Boot] [v3 PATCH 05/12] arm, at91: add missing ddr2 cr register MPDDRC_CR_EBISHARE define Heiko Schocher
2014-11-17 12:15   ` [U-Boot] [U-Boot, v3, " Andreas Bießmann
2014-10-31  7:31 ` [U-Boot] [v3 PATCH 06/12] spl, nand: add option to boot raw u-boot.bin image only Heiko Schocher
2014-11-17 12:15   ` [U-Boot] [U-Boot, v3, " Andreas Bießmann
2014-10-31  7:31 ` [U-Boot] [v3 PATCH 07/12] mtd: atmel_nand: add missign include Heiko Schocher
2014-10-31  7:43   ` Bo Shen
2014-10-31  8:02     ` Heiko Schocher
2014-11-05 23:38       ` Andreas Bießmann
2014-11-17 12:16   ` [U-Boot] [U-Boot,v3,07/12] mtd: atmel_nand: add missing include Andreas Bießmann
2014-10-31  7:31 ` [U-Boot] [v3 PATCH 08/12] spl, nand, atmel_nand: add erase one block function Heiko Schocher
2014-11-06  0:12   ` Andreas Bießmann
2014-11-17 12:16   ` [U-Boot] [U-Boot, v3, " Andreas Bießmann
2014-10-31  7:31 ` [U-Boot] [v3 PATCH 09/12] spl, mtd, nand, atmel_nand: invert device ready pin logic Heiko Schocher
2014-11-17 12:16   ` [U-Boot] [U-Boot, v3, " Andreas Bießmann
2014-10-31  7:31 ` [U-Boot] [v3 PATCH 10/12] arm, spl, at91: add at91sam9260 and at91sam9g45 spl support Heiko Schocher
2014-11-06  0:17   ` Andreas Bießmann
2014-11-17 12:16   ` [U-Boot] [U-Boot, v3, " Andreas Bießmann
2014-10-31  7:31 ` [U-Boot] [v3 PATCH 11/12] arm, at91, spl: add spl support for the taurus board Heiko Schocher
2014-11-17 12:16   ` [U-Boot] [U-Boot, v3, " Andreas Bießmann
2014-10-31  7:31 ` [U-Boot] [v3 PATCH 12/12] arm, spl, at91: add spl support for the corvus board Heiko Schocher
2014-11-06  0:20   ` Andreas Bießmann
2014-11-17 12:16   ` [U-Boot] [U-Boot, v3, " Andreas Bießmann
2014-11-06  0:24 ` [U-Boot] [v3 PATCH 0/12] arm, at91, spl: add spl support for the taurus and corvus boards Andreas Bießmann
2014-11-06  7:10   ` Heiko Schocher [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=545B1ED2.7000600@denx.de \
    --to=hs@denx.de \
    --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