mbox

[U-Boot,PULL] u-boot-atmel/master -> u-boot/master

Message ID 1462275307-82647-1-git-send-email-andreas@biessmann.org
State Deferred
Delegated to: Tom Rini
Headers show

Pull-request

git://git.denx.de/u-boot-atmel.git master

Message

Andreas Bießmann May 3, 2016, 11:35 a.m. UTC
Hi Tom,

here are some fixes for sama5d2 and a new sama5d2 board for 2016.05.

The following changes since commit 58abb988ce24525474f0d515d2a36c1b3acf893f:

  mx6ul_evk: Remove CONFIG_SUPPORT_EMMC_BOOT (2016-05-02 21:04:36 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-atmel.git master

for you to fetch changes up to 0b5940e2b24043a7f4c07cca4b11a13522063e02:

  ARM: sama5d2: Implement boot device autodetection (2016-05-03 13:31:28 +0200)

----------------------------------------------------------------
Marek Vasut (2):
      ARM: atmel: Enable FIT image support for SAMA5Dx
      ARM: sama5d2: Implement boot device autodetection

Wenyou Yang (6):
      ARM: at91: sama5d2: add macro & field definitions
      board: atmel: add SAMA5D2 PTC Engineering board
      board: atmel: sama5d2_xplained: fix the missing pin config of SDMMC0
      ARM: at91: clock: fix the GCK's clock source
      ARM: at91: clock: complete the GCK's clock sources
      board: sama5d2_xplained: change SDHCI GCK's clock source to UPLL

 arch/arm/mach-at91/Kconfig                      |   6 +
 arch/arm/mach-at91/Makefile                     |   2 +-
 arch/arm/mach-at91/armv7/clock.c                |  11 +
 arch/arm/mach-at91/bootparams_atmel.S           |  18 ++
 arch/arm/mach-at91/include/mach/clk.h           |   2 +
 arch/arm/mach-at91/include/mach/sama5_sfr.h     |  24 ++
 arch/arm/mach-at91/include/mach/sama5d2.h       |  17 ++
 arch/arm/mach-at91/spl.c                        |  36 +++
 board/atmel/sama5d2_ptc/Kconfig                 |  15 ++
 board/atmel/sama5d2_ptc/MAINTAINERS             |   7 +
 board/atmel/sama5d2_ptc/Makefile                |   8 +
 board/atmel/sama5d2_ptc/sama5d2_ptc.c           | 285 ++++++++++++++++++++++++
 board/atmel/sama5d2_xplained/sama5d2_xplained.c |   5 +-
 configs/sama5d2_ptc_nandflash_defconfig         |  12 +
 configs/sama5d2_ptc_spiflash_defconfig          |  12 +
 configs/sama5d2_xplained_mmc_defconfig          |   1 +
 configs/sama5d2_xplained_spiflash_defconfig     |   1 +
 configs/sama5d3_xplained_mmc_defconfig          |   1 +
 configs/sama5d3_xplained_nandflash_defconfig    |   1 +
 configs/sama5d3xek_mmc_defconfig                |   1 +
 configs/sama5d3xek_nandflash_defconfig          |   1 +
 configs/sama5d3xek_spiflash_defconfig           |   1 +
 configs/sama5d4_xplained_mmc_defconfig          |   1 +
 configs/sama5d4_xplained_nandflash_defconfig    |   1 +
 configs/sama5d4_xplained_spiflash_defconfig     |   1 +
 configs/sama5d4ek_mmc_defconfig                 |   1 +
 configs/sama5d4ek_nandflash_defconfig           |   1 +
 configs/sama5d4ek_spiflash_defconfig            |   1 +
 include/configs/sama5d2_ptc.h                   | 155 +++++++++++++
 29 files changed, 625 insertions(+), 3 deletions(-)
 create mode 100644 arch/arm/mach-at91/bootparams_atmel.S
 create mode 100644 board/atmel/sama5d2_ptc/Kconfig
 create mode 100644 board/atmel/sama5d2_ptc/MAINTAINERS
 create mode 100644 board/atmel/sama5d2_ptc/Makefile
 create mode 100644 board/atmel/sama5d2_ptc/sama5d2_ptc.c
 create mode 100644 configs/sama5d2_ptc_nandflash_defconfig
 create mode 100644 configs/sama5d2_ptc_spiflash_defconfig
 create mode 100644 include/configs/sama5d2_ptc.h

Regards,

Andreas

Comments

Tom Rini May 3, 2016, 12:13 p.m. UTC | #1
On Tue, May 03, 2016 at 01:35:07PM +0200, Andreas Bießmann wrote:

> Hi Tom,
> 
> here are some fixes for sama5d2 and a new sama5d2 board for 2016.05.
> 
> The following changes since commit 58abb988ce24525474f0d515d2a36c1b3acf893f:
> 
>   mx6ul_evk: Remove CONFIG_SUPPORT_EMMC_BOOT (2016-05-02 21:04:36 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 0b5940e2b24043a7f4c07cca4b11a13522063e02:
> 
>   ARM: sama5d2: Implement boot device autodetection (2016-05-03 13:31:28 +0200)
> 
> ----------------------------------------------------------------
> Marek Vasut (2):
>       ARM: atmel: Enable FIT image support for SAMA5Dx
>       ARM: sama5d2: Implement boot device autodetection
> 
> Wenyou Yang (6):
>       ARM: at91: sama5d2: add macro & field definitions
>       board: atmel: add SAMA5D2 PTC Engineering board
>       board: atmel: sama5d2_xplained: fix the missing pin config of SDMMC0
>       ARM: at91: clock: fix the GCK's clock source
>       ARM: at91: clock: complete the GCK's clock sources
>       board: sama5d2_xplained: change SDHCI GCK's clock source to UPLL

We're less than a week out from release.  Are any of these important
bugfixes that can't wait?  Thanks!
Andreas Bießmann May 3, 2016, 12:33 p.m. UTC | #2
Hi Tom,

On 2016-05-03 14:13, Tom Rini wrote:
> On Tue, May 03, 2016 at 01:35:07PM +0200, Andreas Bießmann wrote:
> 
>> Hi Tom,
>> 
>> here are some fixes for sama5d2 and a new sama5d2 board for 2016.05.
>> 
>> The following changes since commit 
>> 58abb988ce24525474f0d515d2a36c1b3acf893f:
>> 
>>   mx6ul_evk: Remove CONFIG_SUPPORT_EMMC_BOOT (2016-05-02 21:04:36 
>> -0400)
>> 
>> are available in the git repository at:
>> 
>>   git://git.denx.de/u-boot-atmel.git master
>> 
>> for you to fetch changes up to 
>> 0b5940e2b24043a7f4c07cca4b11a13522063e02:
>> 
>>   ARM: sama5d2: Implement boot device autodetection (2016-05-03 
>> 13:31:28 +0200)
>> 
>> ----------------------------------------------------------------
>> Marek Vasut (2):
>>       ARM: atmel: Enable FIT image support for SAMA5Dx
>>       ARM: sama5d2: Implement boot device autodetection
>> 
>> Wenyou Yang (6):
>>       ARM: at91: sama5d2: add macro & field definitions
>>       board: atmel: add SAMA5D2 PTC Engineering board
>>       board: atmel: sama5d2_xplained: fix the missing pin config of 
>> SDMMC0
>>       ARM: at91: clock: fix the GCK's clock source
>>       ARM: at91: clock: complete the GCK's clock sources
>>       board: sama5d2_xplained: change SDHCI GCK's clock source to UPLL
> 
> We're less than a week out from release.  Are any of these important
> bugfixes that can't wait?  Thanks!

As I understand these are fixes to get the MMC working in U-Boot and 
make the config aligned to Linux:

* board: atmel: sama5d2_xplained: fix the missing pin config of SDMMC0
* ARM: at91: clock: fix the GCK's clock source
* ARM: at91: clock: complete the GCK's clock sources
* board: sama5d2_xplained: change SDHCI GCK's clock source to UPLL

But I do not own such a board and could not test the state before nor 
after.

You'r right, it is really late for this release. So lets shift it to the 
next one unless Wenyou says that that board is unusable without this 
fix. If so I could prepare another pull request with just the required 
patches.

Is that ok for you?

Andreas
Tom Rini May 3, 2016, 1:18 p.m. UTC | #3
On Tue, May 03, 2016 at 02:33:06PM +0200, Andreas Bießmann wrote:
> Hi Tom,
> 
> On 2016-05-03 14:13, Tom Rini wrote:
> >On Tue, May 03, 2016 at 01:35:07PM +0200, Andreas Bießmann wrote:
> >
> >>Hi Tom,
> >>
> >>here are some fixes for sama5d2 and a new sama5d2 board for 2016.05.
> >>
> >>The following changes since commit
> >>58abb988ce24525474f0d515d2a36c1b3acf893f:
> >>
> >>  mx6ul_evk: Remove CONFIG_SUPPORT_EMMC_BOOT (2016-05-02
> >>21:04:36 -0400)
> >>
> >>are available in the git repository at:
> >>
> >>  git://git.denx.de/u-boot-atmel.git master
> >>
> >>for you to fetch changes up to
> >>0b5940e2b24043a7f4c07cca4b11a13522063e02:
> >>
> >>  ARM: sama5d2: Implement boot device autodetection (2016-05-03
> >>13:31:28 +0200)
> >>
> >>----------------------------------------------------------------
> >>Marek Vasut (2):
> >>      ARM: atmel: Enable FIT image support for SAMA5Dx
> >>      ARM: sama5d2: Implement boot device autodetection
> >>
> >>Wenyou Yang (6):
> >>      ARM: at91: sama5d2: add macro & field definitions
> >>      board: atmel: add SAMA5D2 PTC Engineering board
> >>      board: atmel: sama5d2_xplained: fix the missing pin config
> >>of SDMMC0
> >>      ARM: at91: clock: fix the GCK's clock source
> >>      ARM: at91: clock: complete the GCK's clock sources
> >>      board: sama5d2_xplained: change SDHCI GCK's clock source to UPLL
> >
> >We're less than a week out from release.  Are any of these important
> >bugfixes that can't wait?  Thanks!
> 
> As I understand these are fixes to get the MMC working in U-Boot and
> make the config aligned to Linux:
> 
> * board: atmel: sama5d2_xplained: fix the missing pin config of SDMMC0
> * ARM: at91: clock: fix the GCK's clock source
> * ARM: at91: clock: complete the GCK's clock sources
> * board: sama5d2_xplained: change SDHCI GCK's clock source to UPLL
> 
> But I do not own such a board and could not test the state before
> nor after.
> 
> You'r right, it is really late for this release. So lets shift it to
> the next one unless Wenyou says that that board is unusable without
> this fix. If so I could prepare another pull request with just the
> required patches.
> 
> Is that ok for you?

Works for me, thanks!