All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2016-08-15 20:23 Andreas Bießmann
  2016-08-15 20:33 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-08-15 20:23 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the following changes into u-boot/master for v2016.09. It contains
one patch also available in the pull request for u-boot-mmc/master from
Jaehoon Chung.

Andreas

The following changes since commit f4b0df1823921ad3bc39820466e9c5201cef6210:

  Merge git://git.denx.de/u-boot-dm (2016-08-12 16:00:50 -0400)

are available in the git repository at:

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

for you to fetch changes up to 2fdbd8559a0a72930922435ecaa2eefb378b1f54:

  mmc: atmel_sdhci: Convert to the driver model support (2016-08-15 22:12:00 +0200)

----------------------------------------------------------------
Songjun Wu (2):
      i2c: atmel: add i2c driver
      i2c: atmel: DT binding for i2c driver

Wenyou Yang (8):
      clk: at91: Add clock driver
      gpio: atmel_pio4: Move PIO4 definitions to head file
      gpio: atmel_pio4: Rework to support DM & DT
      pinctrl: at91-pio4: Add pinctrl driver
      atmel: Bring in at91 pio4 device tree file and bindings
      ARM: at91/dt: Add device tree for SAMA5D2 Xplained
      dm: atmel: Add driver model support for the ehci driver
      mmc: atmel_sdhci: Convert to the driver model support

mario.six at gdsys.cc (1):
      tpm: atmel_twi: Make compatible with DM I2C busses

 arch/arm/dts/Makefile                              |   3 +
 arch/arm/dts/at91-sama5d2_xplained.dts             | 200 +++++
 arch/arm/dts/sama5d2-pinfunc.h                     | 880 +++++++++++++++++++++
 arch/arm/dts/sama5d2.dtsi                          | 671 ++++++++++++++++
 arch/arm/mach-at91/include/mach/at91_pmc.h         |  11 +-
 arch/arm/mach-at91/include/mach/atmel_pio4.h       |  35 +
 doc/device-tree-bindings/i2c/i2c-at91.txt          |  26 +
 .../pinctrl/atmel,at91-pio4-pinctrl.txt            |  66 ++
 drivers/clk/Kconfig                                |   1 +
 drivers/clk/Makefile                               |   1 +
 drivers/clk/at91/Kconfig                           |  43 +
 drivers/clk/at91/Makefile                          |  11 +
 drivers/clk/at91/clk-generated.c                   | 162 ++++
 drivers/clk/at91/clk-h32mx.c                       |  56 ++
 drivers/clk/at91/clk-main.c                        |  55 ++
 drivers/clk/at91/clk-master.c                      |  33 +
 drivers/clk/at91/clk-peripheral.c                  |  60 ++
 drivers/clk/at91/clk-plla.c                        |  55 ++
 drivers/clk/at91/clk-slow.c                        |  37 +
 drivers/clk/at91/clk-system.c                      |  76 ++
 drivers/clk/at91/clk-utmi.c                        |  67 ++
 drivers/clk/at91/pmc.c                             |  71 ++
 drivers/clk/at91/pmc.h                             |  18 +
 drivers/clk/at91/sckc.c                            |  30 +
 drivers/gpio/Kconfig                               |   2 +-
 drivers/gpio/atmel_pio4.c                          | 201 +++--
 drivers/i2c/Kconfig                                |  10 +
 drivers/i2c/Makefile                               |   1 +
 drivers/i2c/at91_i2c.c                             | 338 ++++++++
 drivers/i2c/at91_i2c.h                             |  77 ++
 drivers/mmc/Kconfig                                |  10 +
 drivers/mmc/atmel_sdhci.c                          | 123 +++
 drivers/pinctrl/Kconfig                            |   7 +
 drivers/pinctrl/Makefile                           |   1 +
 drivers/pinctrl/pinctrl-at91-pio4.c                | 182 +++++
 drivers/tpm/Kconfig                                |   2 +-
 drivers/tpm/tpm_atmel_twi.c                        |  15 +-
 drivers/usb/host/Kconfig                           |   7 +
 drivers/usb/host/ehci-atmel.c                      | 116 +++
 include/sdhci.h                                    |   2 +
 40 files changed, 3685 insertions(+), 77 deletions(-)
 create mode 100644 arch/arm/dts/at91-sama5d2_xplained.dts
 create mode 100644 arch/arm/dts/sama5d2-pinfunc.h
 create mode 100644 arch/arm/dts/sama5d2.dtsi
 create mode 100644 doc/device-tree-bindings/i2c/i2c-at91.txt
 create mode 100644 doc/device-tree-bindings/pinctrl/atmel,at91-pio4-pinctrl.txt
 create mode 100644 drivers/clk/at91/Kconfig
 create mode 100644 drivers/clk/at91/Makefile
 create mode 100644 drivers/clk/at91/clk-generated.c
 create mode 100644 drivers/clk/at91/clk-h32mx.c
 create mode 100644 drivers/clk/at91/clk-main.c
 create mode 100644 drivers/clk/at91/clk-master.c
 create mode 100644 drivers/clk/at91/clk-peripheral.c
 create mode 100644 drivers/clk/at91/clk-plla.c
 create mode 100644 drivers/clk/at91/clk-slow.c
 create mode 100644 drivers/clk/at91/clk-system.c
 create mode 100644 drivers/clk/at91/clk-utmi.c
 create mode 100644 drivers/clk/at91/pmc.c
 create mode 100644 drivers/clk/at91/pmc.h
 create mode 100644 drivers/clk/at91/sckc.c
 create mode 100644 drivers/i2c/at91_i2c.c
 create mode 100644 drivers/i2c/at91_i2c.h
 create mode 100644 drivers/pinctrl/pinctrl-at91-pio4.c

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-08-15 20:23 [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master Andreas Bießmann
@ 2016-08-15 20:33 ` Tom Rini
  2016-08-15 20:45   ` Andreas Bießmann
  0 siblings, 1 reply; 50+ messages in thread
From: Tom Rini @ 2016-08-15 20:33 UTC (permalink / raw)
  To: u-boot

On Mon, Aug 15, 2016 at 10:23:29PM +0200, Andreas Bie?mann wrote:

> Hi Tom,
> 
> please pull the following changes into u-boot/master for v2016.09. It contains
> one patch also available in the pull request for u-boot-mmc/master from
> Jaehoon Chung.
> 
> Andreas
> 
> The following changes since commit f4b0df1823921ad3bc39820466e9c5201cef6210:
> 
>   Merge git://git.denx.de/u-boot-dm (2016-08-12 16:00:50 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 2fdbd8559a0a72930922435ecaa2eefb378b1f54:
> 
>   mmc: atmel_sdhci: Convert to the driver model support (2016-08-15 22:12:00 +0200)
> 

NAK:
+   sama5d2_ptc_spiflash                      
+(sama5d2_ptc_spiflash)  static int clk_get_by_name(struct udevice *dev, const char *name,
+(sama5d2_ptc_spiflash)             ^
w+(sama5d2_ptc_spiflash) In file included from drivers/gpio/atmel_pio4.c:10:0:
w+(sama5d2_ptc_spiflash) include/clk.h:107:12: warning: 'clk_get_by_name' defined but not used [-Wunused-function]
w+(sama5d2_ptc_spiflash) In file included from drivers/usb/host/ehci-atmel.c:10:0:

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160815/89723a72/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-08-15 20:33 ` Tom Rini
@ 2016-08-15 20:45   ` Andreas Bießmann
  2016-08-15 20:55     ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-08-15 20:45 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On 15.08.16 22:33, Tom Rini wrote:
> On Mon, Aug 15, 2016 at 10:23:29PM +0200, Andreas Bie?mann wrote:
> 
>> Hi Tom,
>>
>> please pull the following changes into u-boot/master for v2016.09. It contains
>> one patch also available in the pull request for u-boot-mmc/master from
>> Jaehoon Chung.
>>
>> Andreas
>>
>> The following changes since commit f4b0df1823921ad3bc39820466e9c5201cef6210:
>>
>>   Merge git://git.denx.de/u-boot-dm (2016-08-12 16:00:50 -0400)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-atmel.git master
>>
>> for you to fetch changes up to 2fdbd8559a0a72930922435ecaa2eefb378b1f54:
>>
>>   mmc: atmel_sdhci: Convert to the driver model support (2016-08-15 22:12:00 +0200)
>>
> 
> NAK:
> +   sama5d2_ptc_spiflash                      
> +(sama5d2_ptc_spiflash)  static int clk_get_by_name(struct udevice *dev, const char *name,
> +(sama5d2_ptc_spiflash)             ^
> w+(sama5d2_ptc_spiflash) In file included from drivers/gpio/atmel_pio4.c:10:0:
> w+(sama5d2_ptc_spiflash) include/clk.h:107:12: warning: 'clk_get_by_name' defined but not used [-Wunused-function]
> w+(sama5d2_ptc_spiflash) In file included from drivers/usb/host/ehci-atmel.c:10:0:
> 

Please see http://patchwork.ozlabs.org/patch/659378/
Sorry, should have mentioned this in the mail.

Andreas

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-08-15 20:45   ` Andreas Bießmann
@ 2016-08-15 20:55     ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2016-08-15 20:55 UTC (permalink / raw)
  To: u-boot

On Mon, Aug 15, 2016 at 10:45:16PM +0200, Andreas Bie?mann wrote:
> Hi Tom,
> 
> On 15.08.16 22:33, Tom Rini wrote:
> > On Mon, Aug 15, 2016 at 10:23:29PM +0200, Andreas Bie?mann wrote:
> > 
> >> Hi Tom,
> >>
> >> please pull the following changes into u-boot/master for v2016.09. It contains
> >> one patch also available in the pull request for u-boot-mmc/master from
> >> Jaehoon Chung.
> >>
> >> Andreas
> >>
> >> The following changes since commit f4b0df1823921ad3bc39820466e9c5201cef6210:
> >>
> >>   Merge git://git.denx.de/u-boot-dm (2016-08-12 16:00:50 -0400)
> >>
> >> are available in the git repository at:
> >>
> >>   git://git.denx.de/u-boot-atmel.git master
> >>
> >> for you to fetch changes up to 2fdbd8559a0a72930922435ecaa2eefb378b1f54:
> >>
> >>   mmc: atmel_sdhci: Convert to the driver model support (2016-08-15 22:12:00 +0200)
> >>
> > 
> > NAK:
> > +   sama5d2_ptc_spiflash                      
> > +(sama5d2_ptc_spiflash)  static int clk_get_by_name(struct udevice *dev, const char *name,
> > +(sama5d2_ptc_spiflash)             ^
> > w+(sama5d2_ptc_spiflash) In file included from drivers/gpio/atmel_pio4.c:10:0:
> > w+(sama5d2_ptc_spiflash) include/clk.h:107:12: warning: 'clk_get_by_name' defined but not used [-Wunused-function]
> > w+(sama5d2_ptc_spiflash) In file included from drivers/usb/host/ehci-atmel.c:10:0:
> > 
> 
> Please see http://patchwork.ozlabs.org/patch/659378/
> Sorry, should have mentioned this in the mail.

OK, please grab that and put it in the tree such that we don't introduce
new errors :)  Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160815/77a1306e/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-10-28 17:05 Andreas Bießmann
@ 2016-10-29  1:59 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2016-10-29  1:59 UTC (permalink / raw)
  To: u-boot

On Fri, Oct 28, 2016 at 07:05:42PM +0200, Andreas Bie?mann wrote:

> Hi Tom,
> 
> please pull the following changes into u-boot/master for 2016.11.
> 
> One of the patches introduce a build warning (-Wunused-function) which is
> removed with the following patch. This is due to introducing the new feature,
> then switch to the feature and remove the old code in a two step procedure.
> Therefore I think this is Ok.
> 
> Andreas
> 
> The following changes since commit 5ac5861c4ba851b473e6a24940b412b397627d8d:
> 
>   travis-ci: Add test.py for various qemu platforms (2016-10-24 08:06:29 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 0eafd4b77615efdd948e698d83be746dcf026a53:
> 
>   dm: at91: Add driver model support for the spi driver (2016-10-28 18:37:15 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20161028/719e2e64/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2016-10-28 17:05 Andreas Bießmann
  2016-10-29  1:59 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-10-28 17:05 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the following changes into u-boot/master for 2016.11.

One of the patches introduce a build warning (-Wunused-function) which is
removed with the following patch. This is due to introducing the new feature,
then switch to the feature and remove the old code in a two step procedure.
Therefore I think this is Ok.

Andreas

The following changes since commit 5ac5861c4ba851b473e6a24940b412b397627d8d:

  travis-ci: Add test.py for various qemu platforms (2016-10-24 08:06:29 -0400)

are available in the git repository at:

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

for you to fetch changes up to 0eafd4b77615efdd948e698d83be746dcf026a53:

  dm: at91: Add driver model support for the spi driver (2016-10-28 18:37:15 +0200)

----------------------------------------------------------------
Heiko Schocher (3):
      arm: at91: mpddrc: add missing MPDDRC_MD defines
      ARM: at91: clock: correct PRES offset for at91sam9x5
      arm, at91: add icache support

Robert P. J. Day (1):
      AT91: Correct misspelling of "redundent" in partition names

Wenyou Yang (16):
      clk: at91: Fix at91-pmc and at91-sckc's class ID
      ARM: at91/dt: sama5d2: Fix the warning from dtc
      clk: clk-uclass: Assign clk->dev before call .of_xlate
      clk: at91: Improve the clock implementation
      gpio: atmel_pio4: Remove unnecessary clock calling
      i2c: at91_i2c: Remove unnecessary clock calling
      i2c: at91_i2c: Change error return -ENODEV to -EINVAL
      usb: ehci-atmel: Remove unnecessary clock calling
      mmc: atmel_sdhci: Remove unnecessary clock calling
      serial: Kconfig: Add ATMEL_USART option
      serial: atmel_usart: Support enable an early debug UART
      board: sama5d2_xplained: Move config options to defconfigs
      board: sama5d2_xplained: Clean up code
      board: sama5d2_xplained: Set 'ethaddr' got from AT24MAC
      board: sama5d2_xplained: Enable an early debug UART
      dm: at91: Add driver model support for the spi driver

 arch/arm/dts/sama5d2.dtsi                       | 140 ++++++------
 arch/arm/mach-at91/arm926ejs/Makefile           |   1 +
 arch/arm/mach-at91/arm926ejs/cache.c            |  29 +++
 arch/arm/mach-at91/arm926ejs/clock.c            |   6 +
 arch/arm/mach-at91/include/mach/atmel_mpddrc.h  |   3 +
 board/atmel/sama5d2_xplained/sama5d2_xplained.c | 167 ++++++--------
 board/bluewater/gurnard/gurnard.c               |   6 -
 configs/sama5d2_xplained_mmc_defconfig          |  37 ++-
 configs/sama5d2_xplained_spiflash_defconfig     |  37 ++-
 drivers/clk/at91/Kconfig                        |   1 +
 drivers/clk/at91/clk-generated.c                |  87 ++++---
 drivers/clk/at91/clk-peripheral.c               |  72 ++++--
 drivers/clk/at91/clk-system.c                   |  57 +++--
 drivers/clk/at91/pmc.c                          |  72 ++++--
 drivers/clk/at91/pmc.h                          |   5 +-
 drivers/clk/at91/sckc.c                         |  17 +-
 drivers/clk/clk-uclass.c                        |   3 +
 drivers/gpio/atmel_pio4.c                       |  12 -
 drivers/i2c/at91_i2c.c                          |  18 +-
 drivers/mmc/atmel_sdhci.c                       |  27 +--
 drivers/serial/Kconfig                          |  14 ++
 drivers/serial/atmel_usart.c                    |  22 ++
 drivers/spi/Kconfig                             |   8 +
 drivers/spi/atmel_spi.c                         | 288 ++++++++++++++++++++++++
 drivers/usb/host/ehci-atmel.c                   |  15 --
 include/configs/at91-sama5_common.h             |   2 +-
 include/configs/at91sam9rlek.h                  |   2 +-
 include/configs/sama5d2_xplained.h              |  31 +--
 28 files changed, 795 insertions(+), 384 deletions(-)
 create mode 100644 arch/arm/mach-at91/arm926ejs/cache.c

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-08-15 21:04 Andreas Bießmann
  2016-08-16  1:09 ` Tom Rini
@ 2016-08-16  1:10 ` Tom Rini
  1 sibling, 0 replies; 50+ messages in thread
From: Tom Rini @ 2016-08-16  1:10 UTC (permalink / raw)
  To: u-boot

On Mon, Aug 15, 2016 at 11:04:24PM +0200, Andreas Bie?mann wrote:

> Hi Tom,
> 
> please pull the following changes into u-boot/master for v2016.09.
> 
> Andreas
> 
> The following changes since commit f4b0df1823921ad3bc39820466e9c5201cef6210:
> 
>   Merge git://git.denx.de/u-boot-dm (2016-08-12 16:00:50 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to a0d0d86f5cfeefda87986f3825ed1a85efa24448:
> 
>   mmc: atmel_sdhci: Convert to the driver model support (2016-08-15 22:58:05 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160815/fc1e54ee/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-08-15 21:04 Andreas Bießmann
@ 2016-08-16  1:09 ` Tom Rini
  2016-08-16  1:10 ` Tom Rini
  1 sibling, 0 replies; 50+ messages in thread
From: Tom Rini @ 2016-08-16  1:09 UTC (permalink / raw)
  To: u-boot

On Mon, Aug 15, 2016 at 11:04:24PM +0200, Andreas Bie?mann wrote:

> Hi Tom,
> 
> please pull the following changes into u-boot/master for v2016.09.
> 
> Andreas
> 
> The following changes since commit f4b0df1823921ad3bc39820466e9c5201cef6210:
> 
>   Merge git://git.denx.de/u-boot-dm (2016-08-12 16:00:50 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to a0d0d86f5cfeefda87986f3825ed1a85efa24448:
> 
>   mmc: atmel_sdhci: Convert to the driver model support (2016-08-15 22:58:05 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160815/f289c2c8/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2016-08-15 21:04 Andreas Bießmann
  2016-08-16  1:09 ` Tom Rini
  2016-08-16  1:10 ` Tom Rini
  0 siblings, 2 replies; 50+ messages in thread
From: Andreas Bießmann @ 2016-08-15 21:04 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the following changes into u-boot/master for v2016.09.

Andreas

The following changes since commit f4b0df1823921ad3bc39820466e9c5201cef6210:

  Merge git://git.denx.de/u-boot-dm (2016-08-12 16:00:50 -0400)

are available in the git repository at:

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

for you to fetch changes up to a0d0d86f5cfeefda87986f3825ed1a85efa24448:

  mmc: atmel_sdhci: Convert to the driver model support (2016-08-15 22:58:05 +0200)

----------------------------------------------------------------
Andreas Bie?mann (1):
      clk.h: inline clk_get_by_name()

Songjun Wu (2):
      i2c: atmel: add i2c driver
      i2c: atmel: DT binding for i2c driver

Wenyou Yang (8):
      clk: at91: Add clock driver
      gpio: atmel_pio4: Move PIO4 definitions to head file
      gpio: atmel_pio4: Rework to support DM & DT
      pinctrl: at91-pio4: Add pinctrl driver
      atmel: Bring in at91 pio4 device tree file and bindings
      ARM: at91/dt: Add device tree for SAMA5D2 Xplained
      dm: atmel: Add driver model support for the ehci driver
      mmc: atmel_sdhci: Convert to the driver model support

mario.six at gdsys.cc (1):
      tpm: atmel_twi: Make compatible with DM I2C busses

 arch/arm/dts/Makefile                              |   3 +
 arch/arm/dts/at91-sama5d2_xplained.dts             | 200 +++++
 arch/arm/dts/sama5d2-pinfunc.h                     | 880 +++++++++++++++++++++
 arch/arm/dts/sama5d2.dtsi                          | 671 ++++++++++++++++
 arch/arm/mach-at91/include/mach/at91_pmc.h         |  11 +-
 arch/arm/mach-at91/include/mach/atmel_pio4.h       |  35 +
 doc/device-tree-bindings/i2c/i2c-at91.txt          |  26 +
 .../pinctrl/atmel,at91-pio4-pinctrl.txt            |  66 ++
 drivers/clk/Kconfig                                |   1 +
 drivers/clk/Makefile                               |   1 +
 drivers/clk/at91/Kconfig                           |  43 +
 drivers/clk/at91/Makefile                          |  11 +
 drivers/clk/at91/clk-generated.c                   | 162 ++++
 drivers/clk/at91/clk-h32mx.c                       |  56 ++
 drivers/clk/at91/clk-main.c                        |  55 ++
 drivers/clk/at91/clk-master.c                      |  33 +
 drivers/clk/at91/clk-peripheral.c                  |  60 ++
 drivers/clk/at91/clk-plla.c                        |  55 ++
 drivers/clk/at91/clk-slow.c                        |  37 +
 drivers/clk/at91/clk-system.c                      |  76 ++
 drivers/clk/at91/clk-utmi.c                        |  67 ++
 drivers/clk/at91/pmc.c                             |  71 ++
 drivers/clk/at91/pmc.h                             |  18 +
 drivers/clk/at91/sckc.c                            |  30 +
 drivers/gpio/Kconfig                               |   2 +-
 drivers/gpio/atmel_pio4.c                          | 201 +++--
 drivers/i2c/Kconfig                                |  10 +
 drivers/i2c/Makefile                               |   1 +
 drivers/i2c/at91_i2c.c                             | 338 ++++++++
 drivers/i2c/at91_i2c.h                             |  77 ++
 drivers/mmc/Kconfig                                |  10 +
 drivers/mmc/atmel_sdhci.c                          | 123 +++
 drivers/pinctrl/Kconfig                            |   7 +
 drivers/pinctrl/Makefile                           |   1 +
 drivers/pinctrl/pinctrl-at91-pio4.c                | 182 +++++
 drivers/tpm/Kconfig                                |   2 +-
 drivers/tpm/tpm_atmel_twi.c                        |  15 +-
 drivers/usb/host/Kconfig                           |   7 +
 drivers/usb/host/ehci-atmel.c                      | 116 +++
 include/clk.h                                      |   2 +-
 include/sdhci.h                                    |   2 +
 41 files changed, 3686 insertions(+), 78 deletions(-)
 create mode 100644 arch/arm/dts/at91-sama5d2_xplained.dts
 create mode 100644 arch/arm/dts/sama5d2-pinfunc.h
 create mode 100644 arch/arm/dts/sama5d2.dtsi
 create mode 100644 doc/device-tree-bindings/i2c/i2c-at91.txt
 create mode 100644 doc/device-tree-bindings/pinctrl/atmel,at91-pio4-pinctrl.txt
 create mode 100644 drivers/clk/at91/Kconfig
 create mode 100644 drivers/clk/at91/Makefile
 create mode 100644 drivers/clk/at91/clk-generated.c
 create mode 100644 drivers/clk/at91/clk-h32mx.c
 create mode 100644 drivers/clk/at91/clk-main.c
 create mode 100644 drivers/clk/at91/clk-master.c
 create mode 100644 drivers/clk/at91/clk-peripheral.c
 create mode 100644 drivers/clk/at91/clk-plla.c
 create mode 100644 drivers/clk/at91/clk-slow.c
 create mode 100644 drivers/clk/at91/clk-system.c
 create mode 100644 drivers/clk/at91/clk-utmi.c
 create mode 100644 drivers/clk/at91/pmc.c
 create mode 100644 drivers/clk/at91/pmc.h
 create mode 100644 drivers/clk/at91/sckc.c
 create mode 100644 drivers/i2c/at91_i2c.c
 create mode 100644 drivers/i2c/at91_i2c.h
 create mode 100644 drivers/pinctrl/pinctrl-at91-pio4.c

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-06-26 18:38 Andreas Bießmann
@ 2016-06-28  1:12 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2016-06-28  1:12 UTC (permalink / raw)
  To: u-boot

On Sun, Jun 26, 2016 at 08:38:41PM +0200, Andreas Bie?mann wrote:

> Hi Tom,
> 
> please pull the following into u-boot/master for 2016.07.
> 
> It contains the spl_boot_mode() change from Marek which was delegated partly
> to you and partly to me on patchwork.
> The rest is DT support for some Siemens boards which where sent before MW
> close but missed in my last pull request. I hope you'll take it since it
> touches only the three boards.
> 
> Compile tests are clean, except for them already broken in
> 4141e85bcd79c0b9b16def710e527f165107b7af:
> 
> 01: kbuild: avoid race between dtbs and dt/dt.dtb targets
>        arm:  +   omap3_overo igep0030_nand mx31pdk igep0020_nand socfpga_is1
>        omap4_sdp4430 omap4_panda
> 
> (some section overflows with my toolchain and socfpga_is1 is broken for
> CONFIG_BOOTDELAY change)
> 
> Andreas
> 
> The following changes since commit 4141e85bcd79c0b9b16def710e527f165107b7af:
> 
>   kbuild: avoid race between dtbs and dt/dt.dtb targets (2016-06-24 17:24:41 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 8e6e8221c78ed283a45f8598c65ffe4d287dcf42:
> 
>   arm: at91: taurus/axm: add DM and DTS support (2016-06-26 20:17:22 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160627/09dc1119/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2016-06-26 18:38 Andreas Bießmann
  2016-06-28  1:12 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-06-26 18:38 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the following into u-boot/master for 2016.07.

It contains the spl_boot_mode() change from Marek which was delegated partly
to you and partly to me on patchwork.
The rest is DT support for some Siemens boards which where sent before MW
close but missed in my last pull request. I hope you'll take it since it
touches only the three boards.

Compile tests are clean, except for them already broken in
4141e85bcd79c0b9b16def710e527f165107b7af:

01: kbuild: avoid race between dtbs and dt/dt.dtb targets
       arm:  +   omap3_overo igep0030_nand mx31pdk igep0020_nand socfpga_is1
       omap4_sdp4430 omap4_panda

(some section overflows with my toolchain and socfpga_is1 is broken for
CONFIG_BOOTDELAY change)

Andreas

The following changes since commit 4141e85bcd79c0b9b16def710e527f165107b7af:

  kbuild: avoid race between dtbs and dt/dt.dtb targets (2016-06-24 17:24:41 -0400)

are available in the git repository at:

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

for you to fetch changes up to 8e6e8221c78ed283a45f8598c65ffe4d287dcf42:

  arm: at91: taurus/axm: add DM and DTS support (2016-06-26 20:17:22 +0200)

----------------------------------------------------------------
Heiko Schocher (5):
      arm: at91: add CONFIG_AT91SAM9M10G45
      corvus DTS / DM support
      arm: at91: dts: Bring in dts files for AT91SAM9G20 and SAM9260
      arm: at91: smartweb: add DM and DTS support
      arm: at91: taurus/axm: add DM and DTS support

Marek Vasut (2):
      common: Pass the boot device into spl_boot_mode()
      ARM: at91: Don't invoke spl_boot_device() twice

 arch/arm/cpu/arm1136/mx35/generic.c           |    2 +-
 arch/arm/cpu/armv7/ls102xa/spl.c              |    2 +-
 arch/arm/cpu/armv7/omap-common/boot-common.c  |    2 +-
 arch/arm/cpu/armv8/fsl-layerscape/spl.c       |    2 +-
 arch/arm/cpu/armv8/zynqmp/spl.c               |    2 +-
 arch/arm/dts/Makefile                         |    6 +-
 arch/arm/dts/at91sam9260-smartweb.dts         |  110 +++
 arch/arm/dts/at91sam9260.dtsi                 | 1034 +++++++++++++++++++++++++
 arch/arm/dts/at91sam9261.dtsi                 |  876 +++++++++++++++++++++
 arch/arm/dts/at91sam9263.dtsi                 | 1034 +++++++++++++++++++++++++
 arch/arm/dts/at91sam9g20-taurus.dts           |  119 +++
 arch/arm/dts/at91sam9g20.dtsi                 |   68 ++
 arch/arm/dts/at91sam9g45-corvus.dts           |  108 +++
 arch/arm/imx-common/spl.c                     |    2 +-
 arch/arm/mach-at91/Kconfig                    |   12 +
 arch/arm/mach-at91/include/mach/at91_matrix.h |   26 +-
 arch/arm/mach-at91/spl.c                      |    4 +-
 arch/arm/mach-davinci/spl.c                   |    2 +-
 arch/arm/mach-mvebu/spl.c                     |    2 +-
 arch/arm/mach-rockchip/rk3288-board-spl.c     |    2 +-
 arch/arm/mach-socfpga/spl.c                   |    2 +-
 arch/arm/mach-sunxi/board.c                   |    2 +-
 arch/arm/mach-uniphier/boot-mode/boot-mode.c  |    2 +-
 arch/arm/mach-zynq/spl.c                      |    2 +-
 board/siemens/corvus/board.c                  |   41 +-
 board/siemens/smartweb/smartweb.c             |   32 +-
 board/siemens/taurus/taurus.c                 |   25 +
 common/spl/spl_mmc.c                          |    2 +-
 configs/axm_defconfig                         |    5 +-
 configs/corvus_defconfig                      |    8 +
 configs/smartweb_defconfig                    |    7 +-
 configs/taurus_defconfig                      |    5 +-
 include/configs/corvus.h                      |    2 +-
 include/configs/smartweb.h                    |    6 +-
 include/configs/taurus.h                      |    2 +-
 include/spl.h                                 |    2 +-
 36 files changed, 3511 insertions(+), 49 deletions(-)
 create mode 100644 arch/arm/dts/at91sam9260-smartweb.dts
 create mode 100644 arch/arm/dts/at91sam9260.dtsi
 create mode 100644 arch/arm/dts/at91sam9261.dtsi
 create mode 100644 arch/arm/dts/at91sam9263.dtsi
 create mode 100644 arch/arm/dts/at91sam9g20-taurus.dts
 create mode 100644 arch/arm/dts/at91sam9g20.dtsi
 create mode 100644 arch/arm/dts/at91sam9g45-corvus.dts

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-06-12 22:02 Andreas Bießmann
@ 2016-06-19 14:08 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2016-06-19 14:08 UTC (permalink / raw)
  To: u-boot

On Mon, Jun 13, 2016 at 12:02:37AM +0200, Andreas Bie?mann wrote:

> The following changes since commit 6b3943f1b04be60f147ee540fbd72c4c7ea89f80:
> 
>   siemens,am33x: add draco etamin board (2016-06-09 13:53:13 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to c1631c8a04f53e694dd73bbb987b97eed5188517:
> 
>   serial: atmel_usart: Add device tree support (2016-06-12 23:49:38 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160619/49c43cc9/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2016-06-12 22:02 Andreas Bießmann
  2016-06-19 14:08 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-06-12 22:02 UTC (permalink / raw)
  To: u-boot

The following changes since commit 6b3943f1b04be60f147ee540fbd72c4c7ea89f80:

  siemens,am33x: add draco etamin board (2016-06-09 13:53:13 -0400)

are available in the git repository at:

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

for you to fetch changes up to c1631c8a04f53e694dd73bbb987b97eed5188517:

  serial: atmel_usart: Add device tree support (2016-06-12 23:49:38 +0200)

----------------------------------------------------------------
Andre Renaud (6):
      at91: Add support for the AT91 slow clock controller
      net: Handle an empty bootp extension section
      arm: at91: Add a header file for the real-time clock
      at91: Correct NAND ECC register access
      at91: nand: Set up the ECC strength correctly
      arm: at91: Add support for gurnard

Andreas Bie?mann (1):
      linux/compat.h: add dev_warn()

Marek Vasut (3):
      gpio: at91: Fix pullup/pulldown configuration on PIO3
      ARM: at91: sama5: Extend boot device autodetection
      ARM: at91: Fix PMC bit definitions

Simon Glass (10):
      arm: Allow skipping of low-level init with I-cache on
      bootm: Align cache flush end address correctly
      net: macb: Prepare for driver-model conversion
      net: macb: Flush correct cache portion when sending
      net: macb: Convert to driver model
      arm: at91: dts: Bring in device tree file for AT91SAM9G45
      at91: Add driver-model GPIO devices for AT91SAM9G45
      at91: video: Prepare for driver-model conversion
      at91: video: Support driver-model for the LCD driver
      fdt: Correct return value in fdtdec_decode_display_timing()

Wenyou Yang (1):
      serial: atmel_usart: Add device tree support

 README                                             |    5 +
 arch/arm/cpu/arm1136/start.S                       |    2 +
 arch/arm/cpu/arm920t/start.S                       |    3 +-
 arch/arm/cpu/arm926ejs/start.S                     |    2 +
 arch/arm/cpu/arm946es/start.S                      |    2 +
 arch/arm/cpu/armv7/start.S                         |    5 +-
 arch/arm/cpu/sa1100/start.S                        |    2 +
 arch/arm/dts/Makefile                              |    1 +
 arch/arm/dts/at91sam9g45-gurnard.dts               |  157 ++
 arch/arm/dts/at91sam9g45.dtsi                      | 1335 ++++++++++
 arch/arm/mach-at91/Kconfig                         |    9 +
 arch/arm/mach-at91/Makefile                        |    4 +-
 .../mach-at91/arm926ejs/at91sam9m10g45_devices.c   |   18 +
 arch/arm/mach-at91/include/mach/at91_pmc.h         |   16 +-
 arch/arm/mach-at91/include/mach/at91_rtc.h         |   71 +
 arch/arm/mach-at91/include/mach/at91_sck.h         |   21 +
 arch/arm/mach-at91/include/mach/at91sam9g45.h      |    1 +
 arch/arm/mach-at91/include/mach/sama5_boot.h       |   25 +
 arch/arm/mach-at91/include/mach/sama5d2.h          |   12 -
 arch/arm/mach-at91/spl.c                           |   19 +-
 board/bluewater/gurnard/Kconfig                    |   12 +
 board/bluewater/gurnard/MAINTAINERS                |    6 +
 board/bluewater/gurnard/Makefile                   |   11 +
 board/bluewater/gurnard/gurnard.c                  |  449 ++++
 board/bluewater/gurnard/splash_logo.h              | 2619 ++++++++++++++++++++
 common/bootm.c                                     |    2 +-
 configs/gurnard_defconfig                          |   20 +
 drivers/gpio/at91_gpio.c                           |   11 +-
 drivers/mtd/nand/atmel_nand.c                      |    5 +-
 drivers/net/macb.c                                 |  320 ++-
 drivers/serial/atmel_usart.c                       |   19 +
 drivers/video/atmel_lcdfb.c                        |  197 +-
 include/atmel_lcd.h                                |    9 +
 include/configs/snapper9g45.h                      |  155 ++
 include/dt-bindings/clock/at91.h                   |   23 +
 include/dt-bindings/dma/at91.h                     |   52 +
 include/dt-bindings/pinctrl/at91.h                 |   40 +
 include/linux/compat.h                             |    2 +
 lib/fdtdec.c                                       |    2 +-
 net/bootp.c                                        |    9 +
 40 files changed, 5523 insertions(+), 150 deletions(-)
 create mode 100644 arch/arm/dts/at91sam9g45-gurnard.dts
 create mode 100644 arch/arm/dts/at91sam9g45.dtsi
 create mode 100644 arch/arm/mach-at91/include/mach/at91_rtc.h
 create mode 100644 arch/arm/mach-at91/include/mach/at91_sck.h
 create mode 100644 arch/arm/mach-at91/include/mach/sama5_boot.h
 create mode 100644 board/bluewater/gurnard/Kconfig
 create mode 100644 board/bluewater/gurnard/MAINTAINERS
 create mode 100644 board/bluewater/gurnard/Makefile
 create mode 100644 board/bluewater/gurnard/gurnard.c
 create mode 100644 board/bluewater/gurnard/splash_logo.h
 create mode 100644 configs/gurnard_defconfig
 create mode 100644 include/configs/snapper9g45.h
 create mode 100644 include/dt-bindings/clock/at91.h
 create mode 100644 include/dt-bindings/dma/at91.h
 create mode 100644 include/dt-bindings/pinctrl/at91.h

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-05-24  9:41 Andreas Bießmann
@ 2016-05-24 15:55 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2016-05-24 15:55 UTC (permalink / raw)
  To: u-boot

On Tue, May 24, 2016 at 11:41:25AM +0200, Andreas Bie?mann wrote:

> Hi Tom,
> 
> this is a resend of the pull request send late in release cycle for 2016.05.
> 
> The following changes since commit d7d000311285e4b8d11e089ca13ea456a01be3b8:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mips (2016-05-23 11:51:37 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to bb0c63a5f3b05770e8cb6171be57ca69995bd447:
> 
>   ARM: sama5d2: Implement boot device autodetection (2016-05-24 08:08:37 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160524/7e9ca14a/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2016-05-24  9:41 Andreas Bießmann
  2016-05-24 15:55 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-05-24  9:41 UTC (permalink / raw)
  To: u-boot

Hi Tom,

this is a resend of the pull request send late in release cycle for 2016.05.

The following changes since commit d7d000311285e4b8d11e089ca13ea456a01be3b8:

  Merge branch 'master' of git://git.denx.de/u-boot-mips (2016-05-23 11:51:37 -0400)

are available in the git repository at:

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

for you to fetch changes up to bb0c63a5f3b05770e8cb6171be57ca69995bd447:

  ARM: sama5d2: Implement boot device autodetection (2016-05-24 08:08:37 +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

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-05-03 12:33   ` Andreas Bießmann
@ 2016-05-03 13:18     ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2016-05-03 13:18 UTC (permalink / raw)
  To: u-boot

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!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160503/ce62ea63/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-05-03 12:13 ` Tom Rini
@ 2016-05-03 12:33   ` Andreas Bießmann
  2016-05-03 13:18     ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-05-03 12:33 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-05-03 11:35 Andreas Bießmann
@ 2016-05-03 12:13 ` Tom Rini
  2016-05-03 12:33   ` Andreas Bießmann
  0 siblings, 1 reply; 50+ messages in thread
From: Tom Rini @ 2016-05-03 12:13 UTC (permalink / raw)
  To: u-boot

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!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160503/445703d4/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2016-05-03 11:35 Andreas Bießmann
  2016-05-03 12:13 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-05-03 11:35 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-02-19 13:00 ` Andreas Bießmann
@ 2016-02-19 14:23   ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2016-02-19 14:23 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 19, 2016 at 02:00:40PM +0100, Andreas Bie?mann wrote:

> Hi Tom,
> 
> there is another issue in this PR. Please drop it, I'll send another one
> shortly.

OK, thanks.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160219/20bb1c3d/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-02-18 21:34 Andreas Bießmann
@ 2016-02-19 13:00 ` Andreas Bießmann
  2016-02-19 14:23   ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-02-19 13:00 UTC (permalink / raw)
  To: u-boot

Hi Tom,

there is another issue in this PR. Please drop it, I'll send another one
shortly.

Andreas

On 18.02.2016 22:34, Andreas Bie?mann wrote:
> Hi Tom,
> 
> Please pull into u-boot/master.
> 
> buildman for arm has a warning in one patch which is repaired some patches
> later in this pull. I think this is Ok since it is an unused variable warning
> for some boards which do not declare a specific define. The later patch will
> remove the warning line completely.
> 
> Andreas
> 
> The following changes since commit 727a25b2418031e1b94ba603e0eb61657024091b:
> 
>   Prepare v2016.03-rc2 (2016-02-15 21:44:30 +0000)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to bb21ae82b27aa51254f32f0238d3bf60874646dd:
> 
>   ARM: Add Support for the VInCo platform (2016-02-18 21:46:20 +0100)
> 
> ----------------------------------------------------------------
> Gregory CLEMENT (1):
>       ARM: Add Support for the VInCo platform
> 
> Marek Vasut (1):
>       arm: at91: Add support for DENX MA5D4 SoM and EVK
> 
> Matthias Michel (1):
>       siemens,at91: enable features for smartweb
> 
> Samuel Mescoff (1):
>       ARM: at91: sama5d2: configure the L2 cache memory
> 
> Wenyou Yang (15):
>       ARM: at91: asm/at91_pmc.h: fix trival register offset
>       ARM: at91: clock: add a new file to handle clock
>       ARM: cpu: at91: clean up peripheral clock code
>       board: atmel: clean up peripheral clock code
>       drivers: at91: clean up peripheral clock code
>       ARM: at91: clock: add UTMI PLL enable/disable function
>       ARM: at91: armv7: clean up UTMI PLL handle code
>       drivers: usb: atmel: clean up the UTMI PLL code
>       board: atmel: siemens: clean up UTMI PLL code
>       ARM: at91: clock: add PLLB enable/disable functions
>       drivers: usb: ohci-at91: clean up the PLLB code
>       board: atmel: siemens: clean up PLLB code
>       ARM: at91: clock: add PMC_PLLICPR init function
>       ARM: at91: clean up the PMC_PLLICPR init code
>       board: atmel: clean up the PMC_PLLICPR init code
> 
>  arch/arm/mach-at91/Kconfig                         |  12 +
>  arch/arm/mach-at91/Makefile                        |   1 +
>  arch/arm/mach-at91/arm920t/at91rm9200_devices.c    |  14 +-
>  arch/arm/mach-at91/arm920t/clock.c                 |  38 ++
>  arch/arm/mach-at91/arm920t/timer.c                 |   6 +-
>  arch/arm/mach-at91/arm926ejs/at91sam9260_devices.c |  36 +-
>  arch/arm/mach-at91/arm926ejs/at91sam9261_devices.c |  28 +-
>  arch/arm/mach-at91/arm926ejs/at91sam9263_devices.c |  37 +-
>  .../mach-at91/arm926ejs/at91sam9m10g45_devices.c   |  33 +-
>  arch/arm/mach-at91/arm926ejs/at91sam9n12_devices.c |  40 +-
>  arch/arm/mach-at91/arm926ejs/at91sam9rl_devices.c  |  28 +-
>  arch/arm/mach-at91/arm926ejs/at91sam9x5_devices.c  |  38 +-
>  arch/arm/mach-at91/arm926ejs/clock.c               |  37 +-
>  arch/arm/mach-at91/arm926ejs/cpu.c                 |   1 -
>  arch/arm/mach-at91/arm926ejs/timer.c               |   5 +-
>  arch/arm/mach-at91/armv7/clock.c                   |  26 --
>  arch/arm/mach-at91/armv7/cpu.c                     |   1 -
>  arch/arm/mach-at91/armv7/sama5d2_devices.c         |   5 +-
>  arch/arm/mach-at91/armv7/sama5d3_devices.c         |   5 +-
>  arch/arm/mach-at91/armv7/sama5d4_devices.c         |   5 +-
>  arch/arm/mach-at91/armv7/timer.c                   |   1 -
>  arch/arm/mach-at91/atmel_sfr.c                     |   7 +
>  arch/arm/mach-at91/clock.c                         | 121 ++++++
>  arch/arm/mach-at91/include/mach/at91_common.h      |   1 +
>  arch/arm/mach-at91/include/mach/at91_pmc.h         |  15 +-
>  arch/arm/mach-at91/include/mach/clk.h              |   8 +
>  arch/arm/mach-at91/include/mach/sama5_sfr.h        |   1 +
>  arch/arm/mach-at91/phy.c                           |   1 -
>  arch/arm/mach-at91/sdram.c                         |   1 -
>  arch/arm/mach-at91/spl_at91.c                      |   5 +-
>  arch/arm/mach-at91/spl_atmel.c                     |   4 +
>  board/atmel/at91rm9200ek/at91rm9200ek.c            |   1 -
>  board/atmel/at91rm9200ek/led.c                     |   6 +-
>  board/atmel/at91sam9260ek/at91sam9260ek.c          |  15 +-
>  board/atmel/at91sam9261ek/at91sam9261ek.c          |   8 +-
>  board/atmel/at91sam9261ek/led.c                    |   6 +-
>  board/atmel/at91sam9263ek/at91sam9263ek.c          |  23 +-
>  board/atmel/at91sam9263ek/led.c                    |   9 +-
>  board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c    |  20 +-
>  board/atmel/at91sam9m10g45ek/led.c                 |   7 +-
>  board/atmel/at91sam9n12ek/at91sam9n12ek.c          |   6 +-
>  board/atmel/at91sam9rlek/at91sam9rlek.c            |  18 +-
>  board/atmel/at91sam9rlek/led.c                     |   7 +-
>  board/atmel/at91sam9x5ek/at91sam9x5ek.c            |  10 +-
>  board/atmel/sama5d2_xplained/sama5d2_xplained.c    |   1 -
>  board/atmel/sama5d3_xplained/sama5d3_xplained.c    |   9 +-
>  board/atmel/sama5d3xek/sama5d3xek.c                |   9 +-
>  board/atmel/sama5d4_xplained/sama5d4_xplained.c    |   9 +-
>  board/atmel/sama5d4ek/sama5d4ek.c                  |   9 +-
>  board/bluewater/snapper9260/snapper9260.c          |  15 +-
>  board/calao/usb_a9263/usb_a9263.c                  |  11 +-
>  board/denx/ma5d4evk/Kconfig                        |  12 +
>  board/denx/ma5d4evk/MAINTAINERS                    |   6 +
>  board/denx/ma5d4evk/Makefile                       |   7 +
>  board/denx/ma5d4evk/ma5d4evk.c                     | 412 +++++++++++++++++++++
>  board/egnite/ethernut5/ethernut5.c                 |  20 +-
>  board/esd/meesc/meesc.c                            |  15 +-
>  board/l+g/vinco/Kconfig                            |  12 +
>  board/l+g/vinco/Makefile                           |   1 +
>  board/l+g/vinco/vinco.c                            | 212 +++++++++++
>  board/mini-box/picosam9g45/led.c                   |   7 +-
>  board/mini-box/picosam9g45/picosam9g45.c           |  17 +-
>  board/ronetix/pm9261/led.c                         |   7 +-
>  board/ronetix/pm9261/pm9261.c                      |  22 +-
>  board/ronetix/pm9263/led.c                         |   7 +-
>  board/ronetix/pm9263/pm9263.c                      |  19 +-
>  board/ronetix/pm9g45/pm9g45.c                      |  20 +-
>  board/siemens/corvus/board.c                       |  10 +-
>  board/siemens/smartweb/smartweb.c                  |   9 +-
>  board/siemens/taurus/taurus.c                      |   9 +-
>  configs/ma5d4evk_defconfig                         |  11 +
>  configs/smartweb_defconfig                         |   5 +-
>  configs/vinco_defconfig                            |  13 +
>  drivers/net/at91_emac.c                            |  10 +-
>  drivers/usb/host/ehci-atmel.c                      |  46 +--
>  drivers/usb/host/ohci-at91.c                       |  64 +---
>  include/configs/ma5d4evk.h                         | 255 +++++++++++++
>  include/configs/smartweb.h                         |  14 +-
>  include/configs/vinco.h                            | 168 +++++++++
>  79 files changed, 1568 insertions(+), 602 deletions(-)
>  create mode 100644 arch/arm/mach-at91/clock.c
>  create mode 100644 board/denx/ma5d4evk/Kconfig
>  create mode 100644 board/denx/ma5d4evk/MAINTAINERS
>  create mode 100644 board/denx/ma5d4evk/Makefile
>  create mode 100644 board/denx/ma5d4evk/ma5d4evk.c
>  create mode 100644 board/l+g/vinco/Kconfig
>  create mode 100644 board/l+g/vinco/Makefile
>  create mode 100644 board/l+g/vinco/vinco.c
>  create mode 100644 configs/ma5d4evk_defconfig
>  create mode 100644 configs/vinco_defconfig
>  create mode 100644 include/configs/ma5d4evk.h
>  create mode 100644 include/configs/vinco.h
> 

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2016-02-18 21:34 Andreas Bießmann
  2016-02-19 13:00 ` Andreas Bießmann
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-02-18 21:34 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull into u-boot/master.

buildman for arm has a warning in one patch which is repaired some patches
later in this pull. I think this is Ok since it is an unused variable warning
for some boards which do not declare a specific define. The later patch will
remove the warning line completely.

Andreas

The following changes since commit 727a25b2418031e1b94ba603e0eb61657024091b:

  Prepare v2016.03-rc2 (2016-02-15 21:44:30 +0000)

are available in the git repository at:

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

for you to fetch changes up to bb21ae82b27aa51254f32f0238d3bf60874646dd:

  ARM: Add Support for the VInCo platform (2016-02-18 21:46:20 +0100)

----------------------------------------------------------------
Gregory CLEMENT (1):
      ARM: Add Support for the VInCo platform

Marek Vasut (1):
      arm: at91: Add support for DENX MA5D4 SoM and EVK

Matthias Michel (1):
      siemens,at91: enable features for smartweb

Samuel Mescoff (1):
      ARM: at91: sama5d2: configure the L2 cache memory

Wenyou Yang (15):
      ARM: at91: asm/at91_pmc.h: fix trival register offset
      ARM: at91: clock: add a new file to handle clock
      ARM: cpu: at91: clean up peripheral clock code
      board: atmel: clean up peripheral clock code
      drivers: at91: clean up peripheral clock code
      ARM: at91: clock: add UTMI PLL enable/disable function
      ARM: at91: armv7: clean up UTMI PLL handle code
      drivers: usb: atmel: clean up the UTMI PLL code
      board: atmel: siemens: clean up UTMI PLL code
      ARM: at91: clock: add PLLB enable/disable functions
      drivers: usb: ohci-at91: clean up the PLLB code
      board: atmel: siemens: clean up PLLB code
      ARM: at91: clock: add PMC_PLLICPR init function
      ARM: at91: clean up the PMC_PLLICPR init code
      board: atmel: clean up the PMC_PLLICPR init code

 arch/arm/mach-at91/Kconfig                         |  12 +
 arch/arm/mach-at91/Makefile                        |   1 +
 arch/arm/mach-at91/arm920t/at91rm9200_devices.c    |  14 +-
 arch/arm/mach-at91/arm920t/clock.c                 |  38 ++
 arch/arm/mach-at91/arm920t/timer.c                 |   6 +-
 arch/arm/mach-at91/arm926ejs/at91sam9260_devices.c |  36 +-
 arch/arm/mach-at91/arm926ejs/at91sam9261_devices.c |  28 +-
 arch/arm/mach-at91/arm926ejs/at91sam9263_devices.c |  37 +-
 .../mach-at91/arm926ejs/at91sam9m10g45_devices.c   |  33 +-
 arch/arm/mach-at91/arm926ejs/at91sam9n12_devices.c |  40 +-
 arch/arm/mach-at91/arm926ejs/at91sam9rl_devices.c  |  28 +-
 arch/arm/mach-at91/arm926ejs/at91sam9x5_devices.c  |  38 +-
 arch/arm/mach-at91/arm926ejs/clock.c               |  37 +-
 arch/arm/mach-at91/arm926ejs/cpu.c                 |   1 -
 arch/arm/mach-at91/arm926ejs/timer.c               |   5 +-
 arch/arm/mach-at91/armv7/clock.c                   |  26 --
 arch/arm/mach-at91/armv7/cpu.c                     |   1 -
 arch/arm/mach-at91/armv7/sama5d2_devices.c         |   5 +-
 arch/arm/mach-at91/armv7/sama5d3_devices.c         |   5 +-
 arch/arm/mach-at91/armv7/sama5d4_devices.c         |   5 +-
 arch/arm/mach-at91/armv7/timer.c                   |   1 -
 arch/arm/mach-at91/atmel_sfr.c                     |   7 +
 arch/arm/mach-at91/clock.c                         | 121 ++++++
 arch/arm/mach-at91/include/mach/at91_common.h      |   1 +
 arch/arm/mach-at91/include/mach/at91_pmc.h         |  15 +-
 arch/arm/mach-at91/include/mach/clk.h              |   8 +
 arch/arm/mach-at91/include/mach/sama5_sfr.h        |   1 +
 arch/arm/mach-at91/phy.c                           |   1 -
 arch/arm/mach-at91/sdram.c                         |   1 -
 arch/arm/mach-at91/spl_at91.c                      |   5 +-
 arch/arm/mach-at91/spl_atmel.c                     |   4 +
 board/atmel/at91rm9200ek/at91rm9200ek.c            |   1 -
 board/atmel/at91rm9200ek/led.c                     |   6 +-
 board/atmel/at91sam9260ek/at91sam9260ek.c          |  15 +-
 board/atmel/at91sam9261ek/at91sam9261ek.c          |   8 +-
 board/atmel/at91sam9261ek/led.c                    |   6 +-
 board/atmel/at91sam9263ek/at91sam9263ek.c          |  23 +-
 board/atmel/at91sam9263ek/led.c                    |   9 +-
 board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c    |  20 +-
 board/atmel/at91sam9m10g45ek/led.c                 |   7 +-
 board/atmel/at91sam9n12ek/at91sam9n12ek.c          |   6 +-
 board/atmel/at91sam9rlek/at91sam9rlek.c            |  18 +-
 board/atmel/at91sam9rlek/led.c                     |   7 +-
 board/atmel/at91sam9x5ek/at91sam9x5ek.c            |  10 +-
 board/atmel/sama5d2_xplained/sama5d2_xplained.c    |   1 -
 board/atmel/sama5d3_xplained/sama5d3_xplained.c    |   9 +-
 board/atmel/sama5d3xek/sama5d3xek.c                |   9 +-
 board/atmel/sama5d4_xplained/sama5d4_xplained.c    |   9 +-
 board/atmel/sama5d4ek/sama5d4ek.c                  |   9 +-
 board/bluewater/snapper9260/snapper9260.c          |  15 +-
 board/calao/usb_a9263/usb_a9263.c                  |  11 +-
 board/denx/ma5d4evk/Kconfig                        |  12 +
 board/denx/ma5d4evk/MAINTAINERS                    |   6 +
 board/denx/ma5d4evk/Makefile                       |   7 +
 board/denx/ma5d4evk/ma5d4evk.c                     | 412 +++++++++++++++++++++
 board/egnite/ethernut5/ethernut5.c                 |  20 +-
 board/esd/meesc/meesc.c                            |  15 +-
 board/l+g/vinco/Kconfig                            |  12 +
 board/l+g/vinco/Makefile                           |   1 +
 board/l+g/vinco/vinco.c                            | 212 +++++++++++
 board/mini-box/picosam9g45/led.c                   |   7 +-
 board/mini-box/picosam9g45/picosam9g45.c           |  17 +-
 board/ronetix/pm9261/led.c                         |   7 +-
 board/ronetix/pm9261/pm9261.c                      |  22 +-
 board/ronetix/pm9263/led.c                         |   7 +-
 board/ronetix/pm9263/pm9263.c                      |  19 +-
 board/ronetix/pm9g45/pm9g45.c                      |  20 +-
 board/siemens/corvus/board.c                       |  10 +-
 board/siemens/smartweb/smartweb.c                  |   9 +-
 board/siemens/taurus/taurus.c                      |   9 +-
 configs/ma5d4evk_defconfig                         |  11 +
 configs/smartweb_defconfig                         |   5 +-
 configs/vinco_defconfig                            |  13 +
 drivers/net/at91_emac.c                            |  10 +-
 drivers/usb/host/ehci-atmel.c                      |  46 +--
 drivers/usb/host/ohci-at91.c                       |  64 +---
 include/configs/ma5d4evk.h                         | 255 +++++++++++++
 include/configs/smartweb.h                         |  14 +-
 include/configs/vinco.h                            | 168 +++++++++
 79 files changed, 1568 insertions(+), 602 deletions(-)
 create mode 100644 arch/arm/mach-at91/clock.c
 create mode 100644 board/denx/ma5d4evk/Kconfig
 create mode 100644 board/denx/ma5d4evk/MAINTAINERS
 create mode 100644 board/denx/ma5d4evk/Makefile
 create mode 100644 board/denx/ma5d4evk/ma5d4evk.c
 create mode 100644 board/l+g/vinco/Kconfig
 create mode 100644 board/l+g/vinco/Makefile
 create mode 100644 board/l+g/vinco/vinco.c
 create mode 100644 configs/ma5d4evk_defconfig
 create mode 100644 configs/vinco_defconfig
 create mode 100644 include/configs/ma5d4evk.h
 create mode 100644 include/configs/vinco.h

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2016-02-02 11:52 Andreas Bießmann
@ 2016-02-02 15:49 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2016-02-02 15:49 UTC (permalink / raw)
  To: u-boot

On Tue, Feb 02, 2016 at 12:52:49PM +0100, Andreas Bie?mann wrote:

> Hi Tom,
> 
> please pull these changes into u-boot/master ... eventually before tagging rc1 ;)
> 
> Andreas
> 
> The following changes since commit 9e4de7fd4acc8f99b6d383c711d21c0159849629:
> 
>   Merge branch 'master' of http://git.denx.de/u-boot-sunxi (2016-01-26 17:45:37 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 37dadbca0c8b9bff00f892fd87a978cbe0a98b3a:
> 
>   board: atmel: sama5d2_xplained: add SPL support (2016-02-02 11:49:13 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160202/8f06672a/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2016-02-02 11:52 Andreas Bießmann
  2016-02-02 15:49 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2016-02-02 11:52 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull these changes into u-boot/master ... eventually before tagging rc1 ;)

Andreas

The following changes since commit 9e4de7fd4acc8f99b6d383c711d21c0159849629:

  Merge branch 'master' of http://git.denx.de/u-boot-sunxi (2016-01-26 17:45:37 -0500)

are available in the git repository at:

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

for you to fetch changes up to 37dadbca0c8b9bff00f892fd87a978cbe0a98b3a:

  board: atmel: sama5d2_xplained: add SPL support (2016-02-02 11:49:13 +0100)

----------------------------------------------------------------
Gregory CLEMENT (2):
      mmc: atmel: Properly fix clock configuration
      net: macb: Not all the GEM are gigabit capable

Josh Wu (5):
      atmel_nand: use nand ecc_{strength, step}_ds instead of our own function
      atmel_nand: add '\n' in the end of error message for better display
      atmel_nand: use the definition: PMECC_OOB_RESERVED_BYTES instead magic number
      atmel_nand_ecc: update pmecc registers according to sama5d2 chip
      atmel_nand: Add 32 bit ecc support for sama5d2 chip

Wenyou Yang (4):
      arm: at91/spl: mpddrc: add struct atmel_mpddrc_config
      arm: at91/spl: mpddrc: add mpddrc DDR3-SDRAM initialization
      arm: at91/spl: mpddrc: use IP version to check configuration
      board: atmel: sama5d2_xplained: add SPL support

 arch/arm/mach-at91/Kconfig                      |   1 +
 arch/arm/mach-at91/Makefile                     |   1 +
 arch/arm/mach-at91/include/mach/atmel_mpddrc.h  |  94 +++++++++++++++++++--
 arch/arm/mach-at91/include/mach/sama5d2.h       |  32 +++++++
 arch/arm/mach-at91/mpddrc.c                     | 107 ++++++++++++++++++++++--
 board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c |   4 +-
 board/atmel/at91sam9n12ek/at91sam9n12ek.c       |   4 +-
 board/atmel/at91sam9x5ek/at91sam9x5ek.c         |   4 +-
 board/atmel/sama5d2_xplained/sama5d2_xplained.c | 103 +++++++++++++++++++++++
 board/atmel/sama5d3_xplained/sama5d3_xplained.c |   4 +-
 board/atmel/sama5d3xek/sama5d3xek.c             |   4 +-
 board/atmel/sama5d4_xplained/sama5d4_xplained.c |   4 +-
 board/atmel/sama5d4ek/sama5d4ek.c               |   4 +-
 board/mini-box/picosam9g45/picosam9g45.c        |   4 +-
 board/siemens/corvus/board.c                    |   4 +-
 configs/sama5d2_xplained_mmc_defconfig          |   1 +
 configs/sama5d2_xplained_spiflash_defconfig     |   1 +
 drivers/mmc/gen_atmel_mci.c                     |  15 +++-
 drivers/mtd/nand/atmel_nand.c                   |  60 +++++--------
 drivers/mtd/nand/atmel_nand_ecc.h               |  36 +++++++-
 drivers/net/macb.c                              |  21 ++++-
 include/configs/sama5d2_xplained.h              |  39 +++++++++
 22 files changed, 465 insertions(+), 82 deletions(-)

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-11-30 21:30 Andreas Bießmann
@ 2015-12-01  1:37 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-12-01  1:37 UTC (permalink / raw)
  To: u-boot

On Mon, Nov 30, 2015 at 10:30:48PM +0100, Andreas Bie?mann wrote:

> Hi Tom,
> 
> please pull the following changes into u-boot/master
> 
> Andreas
> 
> The following changes since commit fa8883a1e39a20e72aaa5093af0c80062cb95757:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-i2c (2015-11-27 08:41:03 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to e4677f1ae221ac615f32c993aaf3d2497ad5009d:
> 
>   arm: at91/spl: atmel_sfr: move saic redirect to separate file (2015-11-30 22:27:55 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20151130/8fb50eb4/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-11-30 21:30 Andreas Bießmann
  2015-12-01  1:37 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-11-30 21:30 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the following changes into u-boot/master

Andreas

The following changes since commit fa8883a1e39a20e72aaa5093af0c80062cb95757:

  Merge branch 'master' of git://git.denx.de/u-boot-i2c (2015-11-27 08:41:03 -0500)

are available in the git repository at:

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

for you to fetch changes up to e4677f1ae221ac615f32c993aaf3d2497ad5009d:

  arm: at91/spl: atmel_sfr: move saic redirect to separate file (2015-11-30 22:27:55 +0100)

----------------------------------------------------------------
Wenyou Yang (7):
      gpio: atmel: Add the PIO4 driver support
      arm: atmel: Add SAMA5D2 Xplained board
      arm: at91/spl: matrix: move matrix init to separate file
      arm: at91/spl: matrix: remove matrix write protection code
      arm: at91/spl: matrix: remove security peripheral select code
      arm: at91/spl: matrix: use matrix slave id macros
      arm: at91/spl: atmel_sfr: move saic redirect to separate file

 arch/arm/mach-at91/Kconfig                       |   5 +
 arch/arm/mach-at91/Makefile                      |   2 +-
 arch/arm/mach-at91/armv7/Makefile                |   1 +
 arch/arm/mach-at91/armv7/sama5d2_devices.c       |  57 +++++
 arch/arm/mach-at91/armv7/sama5d4_devices.c       |  55 -----
 arch/arm/mach-at91/atmel_sfr.c                   |  21 ++
 arch/arm/mach-at91/include/mach/at91_pmc.h       |   9 +-
 arch/arm/mach-at91/include/mach/atmel_pio4.h     |  48 ++++
 arch/arm/mach-at91/include/mach/atmel_usba_udc.h |   3 +-
 arch/arm/mach-at91/include/mach/hardware.h       |   2 +
 arch/arm/mach-at91/include/mach/sama5_sfr.h      |   1 -
 arch/arm/mach-at91/include/mach/sama5d2.h        | 203 ++++++++++++++++
 arch/arm/mach-at91/include/mach/sama5d4.h        |  28 +++
 arch/arm/mach-at91/matrix.c                      |  34 +++
 board/atmel/sama5d2_xplained/Kconfig             |  15 ++
 board/atmel/sama5d2_xplained/MAINTAINERS         |   7 +
 board/atmel/sama5d2_xplained/Makefile            |   8 +
 board/atmel/sama5d2_xplained/sama5d2_xplained.c  | 283 ++++++++++++++++++++++
 configs/sama5d2_xplained_mmc_defconfig           |  11 +
 configs/sama5d2_xplained_spiflash_defconfig      |  11 +
 drivers/gpio/Kconfig                             |  11 +
 drivers/gpio/Makefile                            |   1 +
 drivers/gpio/atmel_pio4.c                        | 296 +++++++++++++++++++++++
 include/configs/sama5d2_xplained.h               | 122 ++++++++++
 24 files changed, 1171 insertions(+), 63 deletions(-)
 create mode 100644 arch/arm/mach-at91/armv7/sama5d2_devices.c
 create mode 100644 arch/arm/mach-at91/atmel_sfr.c
 create mode 100644 arch/arm/mach-at91/include/mach/atmel_pio4.h
 create mode 100644 arch/arm/mach-at91/include/mach/sama5d2.h
 create mode 100644 arch/arm/mach-at91/matrix.c
 create mode 100644 board/atmel/sama5d2_xplained/Kconfig
 create mode 100644 board/atmel/sama5d2_xplained/MAINTAINERS
 create mode 100644 board/atmel/sama5d2_xplained/Makefile
 create mode 100644 board/atmel/sama5d2_xplained/sama5d2_xplained.c
 create mode 100644 configs/sama5d2_xplained_mmc_defconfig
 create mode 100644 configs/sama5d2_xplained_spiflash_defconfig
 create mode 100644 drivers/gpio/atmel_pio4.c
 create mode 100644 include/configs/sama5d2_xplained.h

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-11-03 14:14 Andreas Bießmann
@ 2015-11-03 16:09 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-11-03 16:09 UTC (permalink / raw)
  To: u-boot

On Tue, Nov 03, 2015 at 03:14:16PM +0100, Andreas Bie?mann wrote:

> The following changes since commit 96d59e9d6aa74e35c63dc74da10e41f8ba0f6de4:
> 
>   mpc85xx/t2081: enable parsing DDR ratio for T2081 rev1.1 (2015-11-02 08:51:50 -0800)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 83bf005710a1e01341de5e2f44a3ce082717e313:
> 
>   arm: at91: reworked meesc board support (2015-11-03 14:21:32 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20151103/7f713cf3/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-11-03 14:14 Andreas Bießmann
  2015-11-03 16:09 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-11-03 14:14 UTC (permalink / raw)
  To: u-boot

The following changes since commit 96d59e9d6aa74e35c63dc74da10e41f8ba0f6de4:

  mpc85xx/t2081: enable parsing DDR ratio for T2081 rev1.1 (2015-11-02 08:51:50 -0800)

are available in the git repository at:

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

for you to fetch changes up to 83bf005710a1e01341de5e2f44a3ce082717e313:

  arm: at91: reworked meesc board support (2015-11-03 14:21:32 +0100)

----------------------------------------------------------------
Daniel Gorsulowski (1):
      arm: at91: reworked meesc board support

Wenyou Yang (4):
      arm: at91: Change the Chip ID registers' addresses
      mmc: sdhci: Fix the SD clock stop sequence
      arm: at91: clock: Add the generated clock support
      mmc: atmel: Add atmel sdhci support

 arch/arm/mach-at91/armv7/clock.c              | 95 +++++++++++++++++++++++++++
 arch/arm/mach-at91/armv7/cpu.c                |  7 +-
 arch/arm/mach-at91/include/mach/at91_dbu.h    |  4 --
 arch/arm/mach-at91/include/mach/at91_pmc.h    | 13 ++++
 arch/arm/mach-at91/include/mach/atmel_sdhci.h | 13 ++++
 arch/arm/mach-at91/include/mach/clk.h         | 10 +++
 arch/arm/mach-at91/include/mach/sama5d3.h     |  3 +
 arch/arm/mach-at91/include/mach/sama5d4.h     |  3 +
 board/esd/meesc/meesc.c                       | 20 ++++--
 drivers/mmc/Makefile                          |  1 +
 drivers/mmc/atmel_sdhci.c                     | 40 +++++++++++
 drivers/mmc/sdhci.c                           | 20 +++++-
 include/configs/meesc.h                       | 42 ++++++------
 13 files changed, 236 insertions(+), 35 deletions(-)
 create mode 100644 arch/arm/mach-at91/include/mach/atmel_sdhci.h
 create mode 100644 drivers/mmc/atmel_sdhci.c

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-11-01 21:04 Andreas Bießmann
@ 2015-11-01 23:38 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-11-01 23:38 UTC (permalink / raw)
  To: u-boot

On Sun, Nov 01, 2015 at 10:04:41PM +0100, Andreas Bie?mann wrote:

> The following changes since commit 0e067a65f57189703668826d9841fea477026bf6:
> 
>   x86: Select the ns16550 debug UART for minnowmax, chromebook_link (2015-10-30 18:04:14 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to a61047370d0b73ab886c5863e952695b5ee0d75b:
> 
>   ARM: at91: sama5: change the environment address to 0x6000 (2015-11-01 22:02:16 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20151101/fd6e0930/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-11-01 21:04 Andreas Bießmann
  2015-11-01 23:38 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-11-01 21:04 UTC (permalink / raw)
  To: u-boot

The following changes since commit 0e067a65f57189703668826d9841fea477026bf6:

  x86: Select the ns16550 debug UART for minnowmax, chromebook_link (2015-10-30 18:04:14 -0400)

are available in the git repository at:

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

for you to fetch changes up to a61047370d0b73ab886c5863e952695b5ee0d75b:

  ARM: at91: sama5: change the environment address to 0x6000 (2015-11-01 22:02:16 +0100)

----------------------------------------------------------------
Josh Wu (2):
      at91: simplify spl board_init_f function
      ARM: at91: sama5: change the environment address to 0x6000

Marek Vasut (5):
      mmc: atmel: Silence debug output
      mmc: atmel: Fix clock configuration
      mmc: atmel: Implement proper private data
      mmc: atmel: Zap global 'initialized' variable
      lcd: atmel: Add 32bpp support for HLCDC

 arch/arm/mach-at91/spl_atmel.c      |  5 ----
 drivers/mmc/gen_atmel_mci.c         | 60 ++++++++++++++++++++++---------------
 drivers/video/atmel_hlcdfb.c        |  4 +++
 include/configs/at91-sama5_common.h |  4 +--
 4 files changed, 42 insertions(+), 31 deletions(-)

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-10-01  7:44 Andreas Bießmann
@ 2015-10-03  0:35 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-10-03  0:35 UTC (permalink / raw)
  To: u-boot

On Thu, Oct 01, 2015 at 09:44:12AM +0200, Andreas Bie?mann wrote:

> Hi Tom,
> 
> here are two small fixes for v2015.10 regarding atmel boards.
> 
> Andreas
> 
> The following changes since commit 1f8836396de8215b7f460616926052b32597bb29:
> 
>   Prepare v2015.10-rc4 (2015-09-28 16:57:42 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to aca5d0830aab91680c2ef44e9cb2999cbea19f2f:
> 
>   arm, at91: small updates for the smartweb board (2015-10-01 09:34:59 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20151002/a48dfa2d/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-10-01  7:44 Andreas Bießmann
  2015-10-03  0:35 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-10-01  7:44 UTC (permalink / raw)
  To: u-boot

Hi Tom,

here are two small fixes for v2015.10 regarding atmel boards.

Andreas

The following changes since commit 1f8836396de8215b7f460616926052b32597bb29:

  Prepare v2015.10-rc4 (2015-09-28 16:57:42 -0400)

are available in the git repository at:

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

for you to fetch changes up to aca5d0830aab91680c2ef44e9cb2999cbea19f2f:

  arm, at91: small updates for the smartweb board (2015-10-01 09:34:59 +0200)

----------------------------------------------------------------
Heiko Schocher (1):
      arm, at91: small updates for the smartweb board

Josh Wu (1):
      ARM: at91: sama5: add support for CONFIG_ENV_IS_IN_MMC

 board/siemens/smartweb/smartweb.c   | 25 ++++++++++++++-----------
 include/configs/at91-sama5_common.h |  8 ++++++++
 include/configs/smartweb.h          |  4 ++++
 3 files changed, 26 insertions(+), 11 deletions(-)

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-09-11  7:45 Andreas Bießmann
@ 2015-09-11 13:00 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-09-11 13:00 UTC (permalink / raw)
  To: u-boot

On Fri, Sep 11, 2015 at 09:45:22AM +0200, Andreas Bie?mann wrote:

> Hi Tom,
> 
> hopefully the last pull request for 2015.10 from atmel side. It finally
> contains a fix for two siemens boards (axm, taurus) for SPL size check, a DFU
> series for armv5 at91 devices acked by ?ukasz Majewski and some trivial fixes.
> 
> The following changes since commit f0dc73c090317c7d0660443bc933d612a4c0c699:
> 
>   net: designware: Fix build warnings (2015-09-09 07:48:03 -0600)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to e8b81eef4499c32b11d5f120171f39f67db0db59:
> 
>   at91, taurus, smartweb: add dfu support (2015-09-11 09:35:40 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150911/460d289d/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-09-11  7:45 Andreas Bießmann
  2015-09-11 13:00 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-09-11  7:45 UTC (permalink / raw)
  To: u-boot

Hi Tom,

hopefully the last pull request for 2015.10 from atmel side. It finally
contains a fix for two siemens boards (axm, taurus) for SPL size check, a DFU
series for armv5 at91 devices acked by ?ukasz Majewski and some trivial fixes.

The following changes since commit f0dc73c090317c7d0660443bc933d612a4c0c699:

  net: designware: Fix build warnings (2015-09-09 07:48:03 -0600)

are available in the git repository at:

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

for you to fetch changes up to e8b81eef4499c32b11d5f120171f39f67db0db59:

  at91, taurus, smartweb: add dfu support (2015-09-11 09:35:40 +0200)

----------------------------------------------------------------
Bo Shen (1):
      ARM: atmel: boards: use default CONFIG_SYS_PBSIZE

Daniel Gorsulowski (1):
      arm: at91: convert meesc board to generic board

Heiko Schocher (7):
      at91: corvus: board updates
      corvus, dfu: add dfu support
      arm, at91: add axm extensions
      taurus: board updates
      usb: gadget: at91_udc: port linux driver at91_udc
      usb: gadget: at91_udc: add at91_udc into U-Boot
      at91, taurus, smartweb: add dfu support

 board/siemens/corvus/board.c        |   23 +-
 board/siemens/smartweb/smartweb.c   |   29 +
 board/siemens/taurus/taurus.c       |  229 ++++-
 drivers/usb/gadget/Makefile         |    1 +
 drivers/usb/gadget/at91_udc.c       | 1625 +++++++++++++++++++++++++++++++++++
 drivers/usb/gadget/at91_udc.h       |  171 ++++
 include/configs/at91-sama5_common.h |    2 -
 include/configs/at91sam9260ek.h     |    1 -
 include/configs/at91sam9261ek.h     |    1 -
 include/configs/at91sam9263ek.h     |    1 -
 include/configs/at91sam9m10g45ek.h  |    1 -
 include/configs/at91sam9n12ek.h     |    2 -
 include/configs/at91sam9rlek.h      |    1 -
 include/configs/at91sam9x5ek.h      |    2 -
 include/configs/corvus.h            |   44 +-
 include/configs/meesc.h             |    2 +
 include/configs/smartweb.h          |   53 +-
 include/configs/taurus.h            |  120 ++-
 include/linux/usb/at91_udc.h        |   20 +
 19 files changed, 2262 insertions(+), 66 deletions(-)
 create mode 100644 drivers/usb/gadget/at91_udc.c
 create mode 100644 drivers/usb/gadget/at91_udc.h
 create mode 100644 include/linux/usb/at91_udc.h

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-08-21 13:25 Andreas Bießmann
@ 2015-08-21 13:36 ` Andreas Bießmann
  0 siblings, 0 replies; 50+ messages in thread
From: Andreas Bießmann @ 2015-08-21 13:36 UTC (permalink / raw)
  To: u-boot

Sorry Tom,

On 08/21/2015 03:25 PM, Andreas Bie?mann wrote:
> The following changes since commit 8d77576371381ade83de475bb639949b44941e8c:
> 
>   ARM: davinci: remove support for cam_enc_4xx (2015-08-20 12:55:50 -0400)
> 

there slipped one wrong commit in. Please forget this PR!

Andreas

> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 6e119bc25a27700b71a6340f9c7cd5382d9c6649:
> 
>   ARM: at91: sama5: update the spi flash mapping (2015-08-21 15:15:28 +0200)
> 
> ----------------------------------------------------------------

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-08-21 13:25 Andreas Bießmann
  2015-08-21 13:36 ` Andreas Bießmann
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-08-21 13:25 UTC (permalink / raw)
  To: u-boot

The following changes since commit 8d77576371381ade83de475bb639949b44941e8c:

  ARM: davinci: remove support for cam_enc_4xx (2015-08-20 12:55:50 -0400)

are available in the git repository at:

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

for you to fetch changes up to 6e119bc25a27700b71a6340f9c7cd5382d9c6649:

  ARM: at91: sama5: update the spi flash mapping (2015-08-21 15:15:28 +0200)

----------------------------------------------------------------
Erik van Luijk (4):
      arm: at91: mpddr: allow multiple DDR controllers
      arm: at91: at91sam9m10g45ek/corvus remove useless chip select 1 init
      arm: at91: pmc: replace the constant with a define in at91_pmc.h
      arm: at91: add support for mini-box picosam9g45 board

Heiko Schocher (2):
      arm, at91: add axm extensions
      taurus: board updates

Wu, Josh (4):
      ARM: at91: sama5: move the sd/mmc env config to at91-sama5_common.h
      ARM: at91: sama5d3xek: use a $dtb_name to load dtb
      ARM: at91: sama5: move the nandflash env config to at91-sama5_common.h
      ARM: at91: sama5: update the spi flash mapping

 arch/arm/include/asm/mach-types.h               |   1 +
 arch/arm/mach-at91/Kconfig                      |   6 +
 arch/arm/mach-at91/include/mach/at91_pmc.h      |   1 +
 arch/arm/mach-at91/include/mach/atmel_mpddrc.h  |   6 +-
 arch/arm/mach-at91/mpddrc.c                     |  41 +--
 board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c |  12 +-
 board/atmel/at91sam9n12ek/at91sam9n12ek.c       |   4 +-
 board/atmel/at91sam9x5ek/at91sam9x5ek.c         |   4 +-
 board/atmel/sama5d3_xplained/sama5d3_xplained.c |   4 +-
 board/atmel/sama5d3xek/sama5d3xek.c             |  24 +-
 board/atmel/sama5d4_xplained/sama5d4_xplained.c |   4 +-
 board/atmel/sama5d4ek/sama5d4ek.c               |   4 +-
 board/mini-box/picosam9g45/Kconfig              |  12 +
 board/mini-box/picosam9g45/MAINTAINERS          |   6 +
 board/mini-box/picosam9g45/Makefile             |  19 ++
 board/mini-box/picosam9g45/led.c                |  25 ++
 board/mini-box/picosam9g45/picosam9g45.c        | 354 ++++++++++++++++++++++++
 board/siemens/corvus/board.c                    |  12 +-
 board/siemens/taurus/taurus.c                   | 202 ++++++++++++--
 configs/picosam9g45_defconfig                   |  12 +
 include/configs/at91-sama5_common.h             |  37 +++
 include/configs/at91sam9m10g45ek.h              |   1 -
 include/configs/at91sam9n12ek.h                 |   2 -
 include/configs/at91sam9x5ek.h                  |   2 -
 include/configs/corvus.h                        |   2 -
 include/configs/picosam9g45.h                   | 211 ++++++++++++++
 include/configs/sama5d3_xplained.h              |  19 +-
 include/configs/sama5d3xek.h                    |  33 +--
 include/configs/sama5d4_xplained.h              |  41 +--
 include/configs/sama5d4ek.h                     |  39 +--
 include/configs/taurus.h                        |  79 +++++-
 31 files changed, 1019 insertions(+), 200 deletions(-)
 create mode 100644 board/mini-box/picosam9g45/Kconfig
 create mode 100644 board/mini-box/picosam9g45/MAINTAINERS
 create mode 100644 board/mini-box/picosam9g45/Makefile
 create mode 100644 board/mini-box/picosam9g45/led.c
 create mode 100644 board/mini-box/picosam9g45/picosam9g45.c
 create mode 100644 configs/picosam9g45_defconfig
 create mode 100644 include/configs/picosam9g45.h

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-05-13 11:04 Andreas Bießmann
@ 2015-05-14 19:14 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-05-14 19:14 UTC (permalink / raw)
  To: u-boot

On Wed, May 13, 2015 at 01:04:41PM +0200, Andreas Bie?mann wrote:

> Hi Tom,
> 
> please pull the following changes into u-boot/master.
> 
> The following changes since commit bd328eb38274ffaf04caaa8a6ecc09b7e19a650e:
> 
>   Clean all defconfigs with savedefconfig (2015-05-12 18:10:26 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 9aee8d835751773ad7a6b8d618566814c0a3205c:
> 
>   ARM: at91: trival: fix typo for the nand partition name (2015-05-13 13:01:28 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-05-13 11:04 Andreas Bießmann
  2015-05-14 19:14 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-05-13 11:04 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the following changes into u-boot/master.

The following changes since commit bd328eb38274ffaf04caaa8a6ecc09b7e19a650e:

  Clean all defconfigs with savedefconfig (2015-05-12 18:10:26 -0400)

are available in the git repository at:

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

for you to fetch changes up to 9aee8d835751773ad7a6b8d618566814c0a3205c:

  ARM: at91: trival: fix typo for the nand partition name (2015-05-13 13:01:28 +0200)

----------------------------------------------------------------
Masahiro Yamada (1):
      ARM: at91: remove non-generic boards

Wu, Josh (1):
      ARM: at91: trival: fix typo for the nand partition name

 arch/arm/mach-at91/Kconfig                         |   15 --
 arch/arm/mach-at91/arm926ejs/at91sam9260_devices.c |    2 +-
 board/afeb9260/Kconfig                             |    9 --
 board/afeb9260/MAINTAINERS                         |    6 -
 board/afeb9260/Makefile                            |   13 --
 board/afeb9260/afeb9260.c                          |  159 ------------------
 board/afeb9260/config.mk                           |    1 -
 board/afeb9260/partition.c                         |   21 ---
 board/calao/sbc35_a9g20/Kconfig                    |   12 --
 board/calao/sbc35_a9g20/MAINTAINERS                |    7 -
 board/calao/sbc35_a9g20/Makefile                   |   13 --
 board/calao/sbc35_a9g20/config.mk                  |    1 -
 board/calao/sbc35_a9g20/sbc35_a9g20.c              |  155 ------------------
 board/calao/sbc35_a9g20/spi.c                      |   41 -----
 board/calao/tny_a9260/Kconfig                      |   12 --
 board/calao/tny_a9260/MAINTAINERS                  |    9 --
 board/calao/tny_a9260/Makefile                     |   13 --
 board/calao/tny_a9260/config.mk                    |    1 -
 board/calao/tny_a9260/spi.c                        |   34 ----
 board/calao/tny_a9260/tny_a9260.c                  |   85 ----------
 configs/afeb9260_defconfig                         |    3 -
 configs/sbc35_a9g20_eeprom_defconfig               |    4 -
 configs/sbc35_a9g20_nandflash_defconfig            |    4 -
 configs/tny_a9260_eeprom_defconfig                 |    4 -
 configs/tny_a9260_nandflash_defconfig              |    4 -
 configs/tny_a9g20_eeprom_defconfig                 |    4 -
 configs/tny_a9g20_nandflash_defconfig              |    4 -
 doc/README.scrapyard                               |   19 ++-
 include/configs/afeb9260.h                         |  156 ------------------
 include/configs/at91-sama5_common.h                |    2 +-
 include/configs/at91sam9rlek.h                     |    2 +-
 include/configs/sbc35_a9g20.h                      |  169 --------------------
 include/configs/tny_a9260.h                        |  150 -----------------
 33 files changed, 14 insertions(+), 1120 deletions(-)
 delete mode 100644 board/afeb9260/Kconfig
 delete mode 100644 board/afeb9260/MAINTAINERS
 delete mode 100644 board/afeb9260/Makefile
 delete mode 100644 board/afeb9260/afeb9260.c
 delete mode 100644 board/afeb9260/config.mk
 delete mode 100644 board/afeb9260/partition.c
 delete mode 100644 board/calao/sbc35_a9g20/Kconfig
 delete mode 100644 board/calao/sbc35_a9g20/MAINTAINERS
 delete mode 100644 board/calao/sbc35_a9g20/Makefile
 delete mode 100644 board/calao/sbc35_a9g20/config.mk
 delete mode 100644 board/calao/sbc35_a9g20/sbc35_a9g20.c
 delete mode 100644 board/calao/sbc35_a9g20/spi.c
 delete mode 100644 board/calao/tny_a9260/Kconfig
 delete mode 100644 board/calao/tny_a9260/MAINTAINERS
 delete mode 100644 board/calao/tny_a9260/Makefile
 delete mode 100644 board/calao/tny_a9260/config.mk
 delete mode 100644 board/calao/tny_a9260/spi.c
 delete mode 100644 board/calao/tny_a9260/tny_a9260.c
 delete mode 100644 configs/afeb9260_defconfig
 delete mode 100644 configs/sbc35_a9g20_eeprom_defconfig
 delete mode 100644 configs/sbc35_a9g20_nandflash_defconfig
 delete mode 100644 configs/tny_a9260_eeprom_defconfig
 delete mode 100644 configs/tny_a9260_nandflash_defconfig
 delete mode 100644 configs/tny_a9g20_eeprom_defconfig
 delete mode 100644 configs/tny_a9g20_nandflash_defconfig
 delete mode 100644 include/configs/afeb9260.h
 delete mode 100644 include/configs/sbc35_a9g20.h
 delete mode 100644 include/configs/tny_a9260.h

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-03-31 23:11 Andreas Bießmann
@ 2015-04-01  0:56 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-04-01  0:56 UTC (permalink / raw)
  To: u-boot

On Wed, Apr 01, 2015 at 01:11:45AM +0200, Andreas Bie?mann wrote:

> Hi Tom,
> 
> another pull request for 2015.04 release. Atmel stuff should be fine now for
> this release.
> 
> The following changes since commit 662e2acb46250881ec26bc8366fc9eb1856cb7c2:
> 
>   sunxi: UTOO_P66: Add missing MAINTAINERS entry (2015-03-29 14:56:48 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to b2d387bcebba352ca64b781486507800964d7ffd:
> 
>   ARM: at91: sama5: move the common part of configurations to at91-sama5_common.h (2015-04-01 01:04:32 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150331/453d04d4/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-03-31 23:11 Andreas Bießmann
  2015-04-01  0:56 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-03-31 23:11 UTC (permalink / raw)
  To: u-boot

Hi Tom,

another pull request for 2015.04 release. Atmel stuff should be fine now for
this release.

The following changes since commit 662e2acb46250881ec26bc8366fc9eb1856cb7c2:

  sunxi: UTOO_P66: Add missing MAINTAINERS entry (2015-03-29 14:56:48 +0200)

are available in the git repository at:

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

for you to fetch changes up to b2d387bcebba352ca64b781486507800964d7ffd:

  ARM: at91: sama5: move the common part of configurations to at91-sama5_common.h (2015-04-01 01:04:32 +0200)

----------------------------------------------------------------
Bo Shen (6):
      ARM: atmel: arm9: switch to use common timer functions
      ARM: atmel: armv7: switch to use common timer functions
      ARM: atmel: arm926ejs: fix clock configuration
      ARM: atmel: at91sam9m10g45ek: enable spl support
      ARM: atmel: at91sam9x5ek: enable spl support
      ARM: atmel: at91sam9n12ek: enable spl support

David Dueck (1):
      ARM: at91: atmel_nand: Support flash based BBT

Heiko Schocher (1):
      arm, at91: corvus: move MACH_TYPE to defconfig

Tom Rini (1):
      spl_atmel.c: Switch s_init to board_init_f

Wu, Josh (3):
      ARM: at91: sama5d4: display the U-Boot version on LCD
      ARM: at91: at91sam9n12ek: save the environment to a fat file in MMC card
      ARM: at91: sama5: move the common part of configurations to at91-sama5_common.h

 arch/arm/mach-at91/Kconfig                      |    3 +
 arch/arm/mach-at91/Makefile                     |    2 +
 arch/arm/mach-at91/arm926ejs/clock.c            |   54 +++++++-------
 arch/arm/mach-at91/arm926ejs/timer.c            |   59 ---------------
 arch/arm/mach-at91/arm926ejs/u-boot-spl.lds     |   48 +++++++++++++
 arch/arm/mach-at91/armv7/timer.c                |   61 ----------------
 arch/arm/mach-at91/include/mach/at91_pmc.h      |    6 +-
 arch/arm/mach-at91/include/mach/at91sam9260.h   |    3 +
 arch/arm/mach-at91/include/mach/at91sam9261.h   |    3 +
 arch/arm/mach-at91/include/mach/at91sam9263.h   |    3 +
 arch/arm/mach-at91/include/mach/at91sam9g45.h   |    3 +
 arch/arm/mach-at91/include/mach/at91sam9rl.h    |    3 +
 arch/arm/mach-at91/include/mach/at91sam9x5.h    |   13 ++++
 arch/arm/mach-at91/include/mach/sama5d3.h       |    3 +
 arch/arm/mach-at91/include/mach/sama5d4.h       |    3 +
 arch/arm/mach-at91/mpddrc.c                     |    3 +-
 arch/arm/mach-at91/spl.c                        |    2 +-
 arch/arm/mach-at91/spl_at91.c                   |   11 ++-
 arch/arm/mach-at91/spl_atmel.c                  |   10 +++
 board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c |   80 +++++++++++++++++++++
 board/atmel/at91sam9n12ek/at91sam9n12ek.c       |   73 +++++++++++++++++++
 board/atmel/at91sam9x5ek/at91sam9x5ek.c         |   74 +++++++++++++++++++
 board/atmel/sama5d4_xplained/sama5d4_xplained.c |    2 +
 board/atmel/sama5d4ek/sama5d4ek.c               |    2 +
 configs/at91sam9m10g45ek_mmc_defconfig          |    1 +
 configs/at91sam9m10g45ek_nandflash_defconfig    |    1 +
 configs/at91sam9n12ek_nandflash_defconfig       |    1 +
 configs/at91sam9n12ek_spiflash_defconfig        |    1 +
 configs/at91sam9x5ek_nandflash_defconfig        |    1 +
 configs/at91sam9x5ek_spiflash_defconfig         |    1 +
 configs/corvus_defconfig                        |    2 +-
 drivers/mtd/nand/atmel_nand.c                   |    6 ++
 include/configs/at91-sama5_common.h             |   87 +++++++++++++++++++++++
 include/configs/at91sam9m10g45ek.h              |   58 +++++++++++++++
 include/configs/at91sam9n12ek.h                 |   73 ++++++++++++++++++-
 include/configs/at91sam9x5ek.h                  |   57 +++++++++++++++
 include/configs/corvus.h                        |    3 -
 include/configs/sama5d3_xplained.h              |   77 +-------------------
 include/configs/sama5d3xek.h                    |   82 ++-------------------
 include/configs/sama5d4_xplained.h              |   76 +-------------------
 include/configs/sama5d4ek.h                     |   78 +-------------------
 41 files changed, 673 insertions(+), 456 deletions(-)
 create mode 100644 arch/arm/mach-at91/arm926ejs/u-boot-spl.lds
 create mode 100644 include/configs/at91-sama5_common.h

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-03-20  7:42 Andreas Bießmann
@ 2015-03-20 15:24 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-03-20 15:24 UTC (permalink / raw)
  To: u-boot

On Fri, Mar 20, 2015 at 08:42:07AM +0100, Andreas Bie?mann wrote:

> Hi Tom,
> 
> I have a few fixes for atmel devices, please pull them into u-boot/master.
> 
> There are still some more on my patchwork todo list regarding SPL for armv5
> atmel devices. I will check them this weekend and maybe request another pull
> beginning of next week.
> 
> The following changes since commit 052a681bae8ee91c9854089549b20c857d499fd7:
> 
>   Prepare v2015.04-rc4 (2015-03-17 16:37:48 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 8e7a96364bc29073e5246d331a11ce8602d5d6a3:
> 
>   ARM: atmel: sama5d4: set non-secured for peripherals (2015-03-18 23:36:10 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150320/d8d4e40e/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-03-20  7:42 Andreas Bießmann
  2015-03-20 15:24 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-03-20  7:42 UTC (permalink / raw)
  To: u-boot

Hi Tom,

I have a few fixes for atmel devices, please pull them into u-boot/master.

There are still some more on my patchwork todo list regarding SPL for armv5
atmel devices. I will check them this weekend and maybe request another pull
beginning of next week.

The following changes since commit 052a681bae8ee91c9854089549b20c857d499fd7:

  Prepare v2015.04-rc4 (2015-03-17 16:37:48 -0400)

are available in the git repository at:

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

for you to fetch changes up to 8e7a96364bc29073e5246d331a11ce8602d5d6a3:

  ARM: atmel: sama5d4: set non-secured for peripherals (2015-03-18 23:36:10 +0100)

----------------------------------------------------------------
Bo Shen (5):
      ARM: atmel: sama5d4 xplained: enable mmc power
      ARM: atmel: sama5d4 boards: fix spl lds location
      ARM: atmel: armv7: move spl lds to armv7 directory
      Net: macb: reset GBE bit when fallback checking
      ARM: atmel: sama5d4: set non-secured for peripherals

Wu, Josh (4):
      ARM: at91: at91sam9rlek: update the default nand flash configs
      ARM: at91: at91sam9rlek: add mci support
      ARM: at91: at91sam9rlek: add mmc environment configuration
      ARM: at91: at91sam9rlek: add hush parser to defconfig

 arch/arm/mach-at91/arm926ejs/at91sam9rl_devices.c |   17 ++++++++
 arch/arm/mach-at91/armv7/sama5d4_devices.c        |    9 ++++
 arch/arm/mach-at91/{ => armv7}/u-boot-spl.lds     |    0
 board/atmel/at91sam9rlek/at91sam9rlek.c           |   10 +++++
 board/atmel/sama5d4_xplained/sama5d4_xplained.c   |    3 ++
 configs/at91sam9rlek_dataflash_defconfig          |    1 +
 configs/at91sam9rlek_mmc_defconfig                |    4 ++
 configs/at91sam9rlek_nandflash_defconfig          |    1 +
 drivers/net/macb.c                                |    2 +-
 include/configs/at91sam9rlek.h                    |   47 +++++++++++++++++----
 include/configs/sama5d3_xplained.h                |    2 +-
 include/configs/sama5d3xek.h                      |    2 +-
 include/configs/sama5d4_xplained.h                |    2 +-
 include/configs/sama5d4ek.h                       |    2 +-
 14 files changed, 89 insertions(+), 13 deletions(-)
 rename arch/arm/mach-at91/{ => armv7}/u-boot-spl.lds (100%)
 create mode 100644 configs/at91sam9rlek_mmc_defconfig

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-02-07 23:48 Andreas Bießmann
@ 2015-02-10 20:09 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-02-10 20:09 UTC (permalink / raw)
  To: u-boot

On Sun, Feb 08, 2015 at 12:48:01AM +0100, Andreas Bie?mann wrote:

> Hi Tom,
> 
> I have some atmel changes posted way before the MW has closed. Sorry for the
> delay, there will be some more patches to process next few days.
> 
> The following changes since commit 7f641d53bbb3a426a3bfb132d8346153e86a9d08:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-ubi (2015-02-04 13:30:00 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 657006a1c46f11784757f9437ffaaa5e0c4dea72:
> 
>   arm, at91: taurus remove MACH_TYPE definitions in config file (2015-02-07 23:43:24 +0100)
> 

Applied to u-boot/master (note there's some warnings about spl_nor.c
atm), thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150210/eceaa739/attachment.sig>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-02-07 23:48 Andreas Bießmann
  2015-02-10 20:09 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-02-07 23:48 UTC (permalink / raw)
  To: u-boot

Hi Tom,

I have some atmel changes posted way before the MW has closed. Sorry for the
delay, there will be some more patches to process next few days.

The following changes since commit 7f641d53bbb3a426a3bfb132d8346153e86a9d08:

  Merge branch 'master' of git://git.denx.de/u-boot-ubi (2015-02-04 13:30:00 -0500)

are available in the git repository at:


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

for you to fetch changes up to 657006a1c46f11784757f9437ffaaa5e0c4dea72:

  arm, at91: taurus remove MACH_TYPE definitions in config file (2015-02-07 23:43:24 +0100)

----------------------------------------------------------------
Bo Shen (14):
      ARM: atmel: clock: make it possible to configure HMX32
      ARM: atmel: sama5: add bus matrix header file
      ARM: atmel: sama5: add sfr register header file
      ARM: atmel: spl: add weak bus matrix init function
      ARM: atmel: spl: add saic to aic redirect function
      ARM: atmel: spl: can not disable osc for sama5d4
      ARM: atmel: sama5d4: add matrix1 base addr definition
      ARM: atmel: sama5d4: add bus matrix init function
      ARM: atmel: sama5d4: add interrupt redirect function
      ARM: atmel: sama5d4: can access DDR in interleave mode
      ARM: atmel: sama5d4: build related file when enable SPL
      ARM: atmel: sama5d4ek: enable SPL support
      ARM: atmel: sama5d4_xplained: enable spl support
      ARM: atmel: cleanup: remove at91cap9 related code

Heiko Schocher (6):
      arm, at91, wdt: do not disable WDT in SPL
      common/board_f: add at91 wdt
      arm, at91, wdt: make timeout configurable
      arm, at91, taurus: enable WDT
      arm, at91: add reset controller status register
      arm, at91: taurus remove MACH_TYPE definitions in config file

Wu, Josh (5):
      mtd: atmel_nand: according to pmecc version to perform 0xff page correction
      ARM: at91: mmc portA support is only for at91sam9g20ek_2mmc board
      ARM: at91: sama5d3_xplained: save environment in a FAT file in MMC card
      ARM: at91: sama5d3xek: save enviroment as a FAT file in MMC card
      ARM: at91: at91sam9x5: save environment to a FAT file in MMC card

 README                                           |    3 +
 arch/arm/Kconfig                                 |    2 +
 arch/arm/cpu/arm926ejs/at91/Makefile             |    1 -
 arch/arm/cpu/arm926ejs/at91/at91cap9_devices.c   |  189 ----------------------
 arch/arm/cpu/armv7/at91/clock.c                  |    8 +
 arch/arm/cpu/armv7/at91/sama5d4_devices.c        |   47 ++++++
 arch/arm/cpu/at91-common/Makefile                |    1 +
 arch/arm/cpu/at91-common/mpddrc.c                |    2 +-
 arch/arm/cpu/at91-common/spl.c                   |    4 +
 arch/arm/cpu/at91-common/spl_atmel.c             |   16 ++
 arch/arm/include/asm/arch-at91/at91_common.h     |    1 +
 arch/arm/include/asm/arch-at91/at91_pmc.h        |    9 +-
 arch/arm/include/asm/arch-at91/at91_rstc.h       |    2 +
 arch/arm/include/asm/arch-at91/at91cap9.h        |   78 ---------
 arch/arm/include/asm/arch-at91/at91cap9_matrix.h |  129 ---------------
 arch/arm/include/asm/arch-at91/at91sam9_matrix.h |    2 -
 arch/arm/include/asm/arch-at91/hardware.h        |    2 -
 arch/arm/include/asm/arch-at91/sama5_matrix.h    |   37 +++++
 arch/arm/include/asm/arch-at91/sama5_sfr.h       |   38 +++++
 arch/arm/include/asm/arch-at91/sama5d4.h         |    2 +
 board/atmel/sama5d4_xplained/sama5d4_xplained.c  |   85 ++++++++++
 board/atmel/sama5d4ek/sama5d4ek.c                |   85 ++++++++++
 common/board_f.c                                 |    2 +-
 configs/at91sam9g20ek_2mmc_defconfig             |    3 +
 configs/at91sam9g20ek_mmc_defconfig              |    3 -
 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 +
 drivers/mtd/nand/atmel_nand.c                    |    9 ++
 drivers/mtd/nand/atmel_nand_ecc.h                |   20 +++
 drivers/video/atmel_lcdfb.c                      |    2 +-
 drivers/watchdog/at91sam9_wdt.c                  |    4 +
 include/configs/at91sam9260ek.h                  |    6 +-
 include/configs/at91sam9x5ek.h                   |   11 +-
 include/configs/sama5d3_xplained.h               |    9 +-
 include/configs/sama5d3xek.h                     |   10 +-
 include/configs/sama5d4_xplained.h               |   56 +++++++
 include/configs/sama5d4ek.h                      |   56 +++++++
 include/configs/taurus.h                         |    9 +-
 42 files changed, 518 insertions(+), 431 deletions(-)
 delete mode 100644 arch/arm/cpu/arm926ejs/at91/at91cap9_devices.c
 delete mode 100644 arch/arm/include/asm/arch-at91/at91cap9.h
 delete mode 100644 arch/arm/include/asm/arch-at91/at91cap9_matrix.h
 create mode 100644 arch/arm/include/asm/arch-at91/sama5_matrix.h
 create mode 100644 arch/arm/include/asm/arch-at91/sama5_sfr.h
 create mode 100644 configs/at91sam9g20ek_2mmc_defconfig
 delete mode 100644 configs/at91sam9g20ek_mmc_defconfig

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-01-26 10:12 Andreas Bießmann
@ 2015-01-27 11:51 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-01-27 11:51 UTC (permalink / raw)
  To: u-boot

On Mon, Jan 26, 2015 at 11:12:34AM +0100, Andreas Bie?mann wrote:

> The following changes since commit ab77f24119e80257de4ab017b877f92f96980562:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-ti (2015-01-16 10:25:01 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 52305a829cd927aca2eb4a15985c567e98f562b9:
> 
>   ARM: atmel: sama5d4_xplained: enable usb ethernet gadget (2015-01-19 15:02:48 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150127/00594edc/attachment.pgp>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-01-26 10:12 Andreas Bießmann
  2015-01-27 11:51 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-01-26 10:12 UTC (permalink / raw)
  To: u-boot

The following changes since commit ab77f24119e80257de4ab017b877f92f96980562:

  Merge branch 'master' of git://git.denx.de/u-boot-ti (2015-01-16 10:25:01 -0500)

are available in the git repository at:


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

for you to fetch changes up to 52305a829cd927aca2eb4a15985c567e98f562b9:

  ARM: atmel: sama5d4_xplained: enable usb ethernet gadget (2015-01-19 15:02:48 +0100)

----------------------------------------------------------------
Bo Shen (6):
      ARM: atmel: sama5d4: add usb platform data
      ARM: atmel: sama5d4: add usb device initial code
      ARM: atmel: sama5d4ek: add option for usb ethernet gadget
      ARM: atmel: sama5d4ek: enable usb ethernet gadget
      ARM: atmel: sama5d4_xplained: add option for usb ethernet gadget
      ARM: atmel: sama5d4_xplained: enable usb ethernet gadget

Heiko Schocher (5):
      arm, arm926ejs: make thumb mode compileable
      arm, at91: enable thumb mode for taurus board in SPL
      taurus, spl: erase also spi flash if recovery button is pressed
      arm, at91: corvus board updates
      arm, at91, axm: add SPL support for axm

Simon Glass (1):
      arm: at91: snapper9260: Drop invalid CONFIG_SKIP_RELOCATE_UBOOT

Wu, Josh (1):
      ARM: at91: sama5d3_xplained: spl: enable PMECC header generation

 arch/arm/cpu/arm926ejs/cpu.c                    |    2 ++
 arch/arm/cpu/armv7/at91/sama5d4_devices.c       |   16 +++++++++++++++
 arch/arm/include/asm/arch-at91/atmel_usba_udc.h |    2 +-
 arch/arm/lib/cache.c                            |    2 ++
 board/atmel/sama5d4_xplained/sama5d4_xplained.c |   11 +++++++++++
 board/atmel/sama5d4ek/sama5d4ek.c               |   11 +++++++++++
 board/siemens/corvus/board.c                    |   12 +++++++-----
 board/siemens/taurus/taurus.c                   |   24 ++++++++++++++---------
 configs/axm_defconfig                           |    5 +++--
 include/configs/corvus.h                        |    4 ++--
 include/configs/sama5d3_xplained.h              |    1 +
 include/configs/sama5d4_xplained.h              |    8 ++++++++
 include/configs/sama5d4ek.h                     |    8 ++++++++
 include/configs/snapper9260.h                   |    1 -
 include/configs/taurus.h                        |   23 +++++++++++++++++++++-
 15 files changed, 109 insertions(+), 21 deletions(-)

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2015-01-11  1:32 Andreas Bießmann
@ 2015-01-11  2:17 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2015-01-11  2:17 UTC (permalink / raw)
  To: u-boot

On Sun, Jan 11, 2015 at 02:32:52AM +0100, Andreas Bie?mann wrote:

> Hi Tom,
> 
> these fixes are for upcoming 2015.01 release, please pull them from
> u-boot-atmel/master.
> 
> The following changes since commit 93e9371f00f1efa9fc570f8e7e8889eae7639868:
> 
>   fix: tools: kwbimage.c: Initialize headersz to suppress warning (2015-01-10 14:09:55 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-atmel.git master
> 
> for you to fetch changes up to 41e82da12a7f5f12eeb5d598adcd73870ed72544:
> 
>   ARM: atmel: sama5d3xek: fix the LCD parameters (2015-01-11 02:16:04 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150110/c34ddac8/attachment.pgp>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2015-01-11  1:32 Andreas Bießmann
  2015-01-11  2:17 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2015-01-11  1:32 UTC (permalink / raw)
  To: u-boot

Hi Tom,

these fixes are for upcoming 2015.01 release, please pull them from
u-boot-atmel/master.

The following changes since commit 93e9371f00f1efa9fc570f8e7e8889eae7639868:

  fix: tools: kwbimage.c: Initialize headersz to suppress warning (2015-01-10 14:09:55 -0500)

are available in the git repository at:

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

for you to fetch changes up to 41e82da12a7f5f12eeb5d598adcd73870ed72544:

  ARM: atmel: sama5d3xek: fix the LCD parameters (2015-01-11 02:16:04 +0100)

----------------------------------------------------------------
Bo Shen (3):
      ARM: atmel: sama5d4 xplained: fix the LCD parameters
      ARM: atmel: sama5d4xek: fix the LCD parameters
      ARM: atmel: sama5d3xek: fix the LCD parameters

 board/atmel/sama5d3xek/sama5d3xek.c             |    3 +--
 board/atmel/sama5d4_xplained/sama5d4_xplained.c |    6 ++----
 board/atmel/sama5d4ek/sama5d4ek.c               |    3 +--
 3 files changed, 4 insertions(+), 8 deletions(-)

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
  2014-11-17 12:35 Andreas Bießmann
@ 2014-11-17 14:50 ` Tom Rini
  0 siblings, 0 replies; 50+ messages in thread
From: Tom Rini @ 2014-11-17 14:50 UTC (permalink / raw)
  To: u-boot

On Mon, Nov 17, 2014 at 01:35:20PM +0100, Andreas Bie?mann wrote:

> Hi Tom,
> 
> please pull u-boot-atmel/master into u-boot/master.
> 
> Sorry for the huge patch-list. I accidentally pulled in u-boot-arm/master
> someday and pushed it. Unfortunately the pushed tree couldn't be deleted for
> good reasons. I'm so sorry for the mess.
> 
> The following changes since commit 2086e388d56cbb0e3737a6276f04f00f74bf6723:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2014-11-14 16:39:32 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-atmel.git master

OK, this is a mess and just git pulling made things messier still.  I
took your branch into a new branch locally, rebased and now have:

f196044 ARM: atmel: add sama5d4 xplained ultra board support
927b901 ARM: atmel: add sama5d4ek board support
cabf61c net: macb: enable GMAC IP without GE feature support
7df4486 mtd: atmel_nand: runtime to build gf table for pmecc
5b15fd9 arm, spl, at91: add spl support for the corvus board
237e3793 arm, at91, spl: add spl support for the taurus board
5abc00d arm, spl, at91: add at91sam9260 and at91sam9g45 spl support
667af36 spl, mtd, nand, atmel_nand: invert device ready pin logic
4dfd360 spl, nand, atmel_nand: add erase one block function
c1ec406 mtd: atmel_nand: add missing include
0c3117b spl, nand: add option to boot raw u-boot.bin image only
bd1bb3c arm, at91: add missing ddr2 cr register MPDDRC_CR_EBISHARE define
7dd5891 arm, at91: compile mpddrc ram init code also for AT91SAM9M10G45
341f548 arm, at91, mpddrc: fix typo in ddr2_init()
50921cd arm, at91: add spi dataflash support for the taurus board
f11dea4 spi, atmel: move CONFIG_SYS_SPI_WRITE_TOUT into common header
c001486 arm, at91: generate boot.bin file for all atmel SoC
da79fa4 ARM: atmel: spl: make css field configurable
a5f35d6 ARM: atmel: spl: make initialization more stable
59158ba ARM: at91 series: convert to generic board
b2eff08 net: macb: write mac address when initialization

As what I've taken into master and build tested and pushed.  I think
you'll just need to git reset --hard and git push -f your tree to get it
back to a happy state.  Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141117/70e53868/attachment.pgp>

^ permalink raw reply	[flat|nested] 50+ messages in thread

* [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
@ 2014-11-17 12:35 Andreas Bießmann
  2014-11-17 14:50 ` Tom Rini
  0 siblings, 1 reply; 50+ messages in thread
From: Andreas Bießmann @ 2014-11-17 12:35 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull u-boot-atmel/master into u-boot/master.

Sorry for the huge patch-list. I accidentally pulled in u-boot-arm/master
someday and pushed it. Unfortunately the pushed tree couldn't be deleted for
good reasons. I'm so sorry for the mess.

The following changes since commit 2086e388d56cbb0e3737a6276f04f00f74bf6723:

  Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2014-11-14 16:39:32 -0500)

are available in the git repository at:


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

for you to fetch changes up to 6531b11f41b6bfebc0b44e4e375a2daa4de92326:

  ARM: atmel: add sama5d4 xplained ultra board support (2014-11-17 13:13:19 +0100)

----------------------------------------------------------------
Anatolij Gustschin (1):
      arm: imx6: fix typos in CCM_ANALOG_PLL_VIDEO_DENOM register name

Andreas Bie?mann (4):
      Merge branch 'master' of git://git.denx.de/u-boot
      tools/kwbimage.c: fix build on darwin
      Merge branch 'master' of git://git.denx.de/u-boot
      Merge branch 'master' of git://git.denx.de/u-boot

Bo Shen (7):
      net: macb: write mac address when initialization
      ARM: at91 series: convert to generic board
      ARM: atmel: spl: make initialization more stable
      ARM: atmel: spl: make css field configurable
      net: macb: enable GMAC IP without GE feature support
      ARM: atmel: add sama5d4ek board support
      ARM: atmel: add sama5d4 xplained ultra board support

Chen-Yu Tsai (1):
      ARM: sunxi: Fix Ippo-q8h-v5 defconfig filename

Christian Gmeiner (3):
      ot1200: add feature pads
      ot1200: add support for usdhc4
      ot1200: rework card detect for eMMC

Dirk Eibach (1):
      ppc: Fix ppc4xx CONFIG_SYS_GENERIC_BOARD

Fabio Estevam (2):
      mx6sabresd: Add Seiko WVGA panel support
      novena: Add MAINTAINERS file

Gerald Kerma (1):
      ARM: kwimage: fix v0 format

Hans de Goede (13):
      usb: Remove unnecessary portnr lookup from usb_new_device
      usb: Do not power-cycle usb devices on init
      usb: ehci: Do not disable an already disabled periodic schedule
      usb: ehci: Move interrupt packet length check to create_int_queue
      usb: ehci: Move cache invalidation to poll_int_queue
      usb: Make pollable int support available outside of ehci-hcd.c
      usb: kbd: Remove unused usb_kbd_generic_poll function
      usb: kbd: Fix memleak on usb_kbd_deregister()
      stdio: Fix memleak on stdio_deregister
      usb: kbd: Cache pipe, interval and packetsize
      usb: kbd: Add (optional) support for using an interrupt queue for polling
      dm: sunxi: Request card detect gpio
      dm: sunxi: Request USB vbus gpio

Heiko Schocher (14):
      arm, imx, spi: detect spi flash again on aristainetos board
      arm, at91: generate boot.bin file for all atmel SoC
      spi, atmel: move CONFIG_SYS_SPI_WRITE_TOUT into common header
      arm, at91: add spi dataflash support for the taurus board
      arm, at91, mpddrc: fix typo in ddr2_init()
      arm, at91: compile mpddrc ram init code also for AT91SAM9M10G45
      arm, at91: add missing ddr2 cr register MPDDRC_CR_EBISHARE define
      spl, nand: add option to boot raw u-boot.bin image only
      mtd: atmel_nand: add missing include
      spl, nand, atmel_nand: add erase one block function
      spl, mtd, nand, atmel_nand: invert device ready pin logic
      arm, spl, at91: add at91sam9260 and at91sam9g45 spl support
      arm, at91, spl: add spl support for the taurus board
      arm, spl, at91: add spl support for the corvus board

Ian Campbell (7):
      sunxi: kconfig: Add top-level ARCH_SUNXI
      sunxi: kconfig: Rename TARGET_SUN[45678]I to MACH_SUN[45678]I.
      sunxi: Kconfig: Make SPL_FEL a toplevel Kconfig option
      sunxi: Use CONFIG_MACH_SUN?I from Kconfig instead of CONFIG_SUN?I
      sunxi: Drop FEL variants of defconfigs.
      sunxi: kconfig: Introduce CONFIG_TARGET_<BOARD>
      sunxi: kconfig: Add %_felconfig rule to enable FEL build of sunxi platforms.

Igor Grinberg (1):
      MAINTAINERS: fix Pantelis Antoniou email address

Jeroen Hofstee (4):
      board: wandboard: add usb storage
      i2c: use __weak
      arm926ejs: cache: use __weak
      serial: add prototypes for init functions

Josh Wu (1):
      mtd: atmel_nand: runtime to build gf table for pmecc

Marek Vasut (3):
      ARM: mx6: Add support for Kosagi Novena
      mtd: nand: mxs: Add ECC geometry for 2048b/112b NAND
      arm: mxs: Define bootscript env variable on m28evk

Markus Niebel (2):
      tqma6: fix sf detection
      tqma6: fix typo in header guard define

Masahiro Yamada (13):
      arm: debug: import debug files from Linux 3.16
      arm: debug: replace license blocks with SPDX
      arm: debug: add Kconfig entries for lowlevel debug
      arm: debug: adjust for U-Boot
      Remove unused files
      ppc/arm: remove remainders of dead boards in Kconfig
      Remove the CREDITS file
      sparc: Use nicer prompt for board select menu
      sparc: move CONFIG_{LEON, LEON2, LEON3} to Kconfig
      sparc: merge arch/sparc/cpu/*/config.mk to arch/sparc/config.mk
      sparc: merge CONFIG_SYS_CPU and CONFIG_SYS_VENDOR defines
      sparc: move CONFIG_SYS_TEXT_BASE to Kconfig
      kbuild: do not hide clang warnings during build with W=1

Nikita Kiryanov (2):
      arm: mx6: cm_fx6: change issd gpio order
      arm: mx6: cm_fx6: detect 1GB DRAM correctly on solo

Nikolay Dimitrov (1):
      novena: Fix ethernet PHY reset sequence

Nobuhiro Iwamatsu (19):
      arm: rmobile: r8a7790: Update initialize L2 cache
      arm: rmobile: lager: Fix change of the CPU frequency
      arm: rmobile: lager: Add external RAM boot
      arm: rmobile: koelsch: Add external RAM boot
      arm: rmobile: alt: Add external RAM boot
      arm: rmobile: lager: Remove RAM address initialization
      arm: rmobile: koelsch: Remove RAM address initialization
      arm: rmobile: alt: Remove RAM address initialization
      arm: rmobile: alt: Fix typo of SCIF id
      arm: rmobile: alt: Add support USB and USB commands
      arm: rmobile: alt: Add VFAT filesystem support
      serial: sh: Add support R8A7793
      net: sh-eth: Add support R8A7793
      serial: sh: r8a7794: Add support external clock
      net: sh-eth: Remove definition of RX_DESC_SIZE and TX_DESC_SIZE
      net: sh-eth: Use memalign instead of orignal memroy alignment function
      net: sh-eth: Add cache writeback control after setting bit of DMA descriptor
      usb: ehci: rmobile: Add support R8A7793
      usb: ehci: rmobile: Collect up address data

Paul Kocialkowski (1):
      twl4030: VMMC2 3.2V enable on MMC init

Przemyslaw Marczak (3):
      exynos4/4x12: cpu: add extra gpio base addresses
      exynos4/4x12: gpio: use gpio extra base addresses
      odroid: adjust gpio calls to dm gpio api

Simon Glass (6):
      dm: sunxi: dts: Add sun7i device tree files
      dm: sunxi: Add a new config for an FDT-based pcDuino3
      dm: sunxi: Add pinmux functions which take a bank parameter
      dm: sunxi: Make sure that GPIOs are requested
      dm: sunxi: Modify the GPIO driver to support driver model
      dm: sunxi: Add support for serial using driver model

Soeren Moch (1):
      arm: arch-mx6: typo fixes in crm_regs.h

Stefan Roese (1):
      tools/kwbimage: Fix compilation warning

Vagrant Cascadian (1):
      Fix cosmetic issues in mkimage manpage

Ye.Li (9):
      imximage: Fix the bootdata.size calculation
      imx: gpt: Add High frequency clock source support for GPT
      imx: mx6sl: Add perclk_clk_sel bit define in CCM
      imx: mx6: Change the get_ipg_per_clk for OSC 24Mhz source
      imx: mx6sl: Set the preclk clock source to OSC 24Mhz
      imx: mx6: Enable high frequency clock source for GPT
      imx: mx6sl: Add IOMUX setting for USDHC1-3
      imx: mx6slevk: Add support for USDHC1 and USDHC3 slots
      imx: mx6 sabreauto: Add board support for USB EHCI

Yehuda Yitschak (1):
      gic: fixed compilation error in GICv2 wait for interrupt macro

 README                                             |    4 +
 arch/arm/Kconfig                                   |   12 +
 arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c  |   22 ++
 arch/arm/cpu/arm926ejs/at91/clock.c                |   60 ++++
 arch/arm/cpu/armv7/at91/Makefile                   |    1 +
 arch/arm/cpu/armv7/at91/clock.c                    |   29 ++
 arch/arm/cpu/armv7/at91/config.mk                  |    4 +-
 arch/arm/cpu/armv7/at91/sama5d4_devices.c          |   30 ++
 arch/arm/cpu/armv7/at91/timer.c                    |    3 +-
 arch/arm/cpu/at91-common/Makefile                  |    7 +-
 arch/arm/cpu/at91-common/mpddrc.c                  |   13 +-
 arch/arm/cpu/at91-common/sdram.c                   |   77 +++++
 arch/arm/cpu/at91-common/spl.c                     |   89 +-----
 arch/arm/cpu/at91-common/spl_at91.c                |  124 ++++++++
 arch/arm/cpu/at91-common/spl_atmel.c               |   80 +++++
 arch/arm/include/asm/arch-at91/at91_common.h       |    6 +
 arch/arm/include/asm/arch-at91/at91_pmc.h          |    9 +-
 arch/arm/include/asm/arch-at91/at91sam9260.h       |    1 +
 .../arm/include/asm/arch-at91/at91sam9260_matrix.h |    5 +
 arch/arm/include/asm/arch-at91/at91sam9_sdramc.h   |   22 +-
 arch/arm/include/asm/arch-at91/atmel_mpddrc.h      |    1 +
 arch/arm/include/asm/arch-at91/clk.h               |   48 ++-
 arch/arm/include/asm/arch-at91/hardware.h          |    2 +
 arch/arm/include/asm/arch-at91/sama5d4.h           |  206 +++++++++++++
 board/atmel/sama5d4_xplained/Kconfig               |   18 ++
 board/atmel/sama5d4_xplained/MAINTAINERS           |    8 +
 board/atmel/sama5d4_xplained/Makefile              |    8 +
 board/atmel/sama5d4_xplained/sama5d4_xplained.c    |  319 ++++++++++++++++++++
 board/atmel/sama5d4ek/Kconfig                      |   18 ++
 board/atmel/sama5d4ek/MAINTAINERS                  |    8 +
 board/atmel/sama5d4ek/Makefile                     |    8 +
 board/atmel/sama5d4ek/sama5d4ek.c                  |  317 +++++++++++++++++++
 board/siemens/corvus/board.c                       |  109 ++++++-
 board/siemens/taurus/taurus.c                      |  100 +++++-
 common/spl/spl.c                                   |   15 +-
 common/spl/spl_nand.c                              |   13 +
 configs/corvus_defconfig                           |    5 +-
 configs/sama5d4_xplained_mmc_defconfig             |    3 +
 configs/sama5d4_xplained_nandflash_defconfig       |    3 +
 configs/sama5d4_xplained_spiflash_defconfig        |    3 +
 configs/sama5d4ek_mmc_defconfig                    |    3 +
 configs/sama5d4ek_nandflash_defconfig              |    3 +
 configs/sama5d4ek_spiflash_defconfig               |    3 +
 configs/taurus_defconfig                           |    5 +-
 drivers/mtd/nand/atmel_nand.c                      |  115 ++++++-
 drivers/mtd/nand/atmel_nand_ecc.h                  |    4 +
 drivers/net/macb.c                                 |   17 +-
 drivers/spi/atmel_spi.h                            |    4 +
 include/configs/afeb9260.h                         |    1 -
 include/configs/at91rm9200ek.h                     |    2 +
 include/configs/at91sam9260ek.h                    |    3 +-
 include/configs/at91sam9261ek.h                    |    3 +-
 include/configs/at91sam9263ek.h                    |    1 -
 include/configs/at91sam9rlek.h                     |    1 -
 include/configs/corvus.h                           |   54 +++-
 include/configs/ethernut5.h                        |    1 -
 include/configs/meesc.h                            |    1 -
 include/configs/otc570.h                           |    1 -
 include/configs/pm9261.h                           |    1 -
 include/configs/pm9263.h                           |    1 -
 include/configs/sama5d4_xplained.h                 |  216 +++++++++++++
 include/configs/sama5d4ek.h                        |  214 +++++++++++++
 include/configs/sbc35_a9g20.h                      |    1 -
 include/configs/taurus.h                           |   62 +++-
 include/configs/tny_a9260.h                        |    1 -
 include/configs/usb_a9263.h                        |    1 -
 include/nand.h                                     |    1 +
 include/spl.h                                      |    1 +
 scripts/Makefile.spl                               |    4 +
 69 files changed, 2377 insertions(+), 158 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/at91/sama5d4_devices.c
 create mode 100644 arch/arm/cpu/at91-common/sdram.c
 create mode 100644 arch/arm/cpu/at91-common/spl_at91.c
 create mode 100644 arch/arm/cpu/at91-common/spl_atmel.c
 create mode 100644 arch/arm/include/asm/arch-at91/sama5d4.h
 create mode 100644 board/atmel/sama5d4_xplained/Kconfig
 create mode 100644 board/atmel/sama5d4_xplained/MAINTAINERS
 create mode 100644 board/atmel/sama5d4_xplained/Makefile
 create mode 100644 board/atmel/sama5d4_xplained/sama5d4_xplained.c
 create mode 100644 board/atmel/sama5d4ek/Kconfig
 create mode 100644 board/atmel/sama5d4ek/MAINTAINERS
 create mode 100644 board/atmel/sama5d4ek/Makefile
 create mode 100644 board/atmel/sama5d4ek/sama5d4ek.c
 create mode 100644 configs/sama5d4_xplained_mmc_defconfig
 create mode 100644 configs/sama5d4_xplained_nandflash_defconfig
 create mode 100644 configs/sama5d4_xplained_spiflash_defconfig
 create mode 100644 configs/sama5d4ek_mmc_defconfig
 create mode 100644 configs/sama5d4ek_nandflash_defconfig
 create mode 100644 configs/sama5d4ek_spiflash_defconfig
 create mode 100644 include/configs/sama5d4_xplained.h
 create mode 100644 include/configs/sama5d4ek.h

^ permalink raw reply	[flat|nested] 50+ messages in thread

end of thread, other threads:[~2016-10-29  1:59 UTC | newest]

Thread overview: 50+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-15 20:23 [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master Andreas Bießmann
2016-08-15 20:33 ` Tom Rini
2016-08-15 20:45   ` Andreas Bießmann
2016-08-15 20:55     ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2016-10-28 17:05 Andreas Bießmann
2016-10-29  1:59 ` Tom Rini
2016-08-15 21:04 Andreas Bießmann
2016-08-16  1:09 ` Tom Rini
2016-08-16  1:10 ` Tom Rini
2016-06-26 18:38 Andreas Bießmann
2016-06-28  1:12 ` Tom Rini
2016-06-12 22:02 Andreas Bießmann
2016-06-19 14:08 ` Tom Rini
2016-05-24  9:41 Andreas Bießmann
2016-05-24 15:55 ` Tom Rini
2016-05-03 11:35 Andreas Bießmann
2016-05-03 12:13 ` Tom Rini
2016-05-03 12:33   ` Andreas Bießmann
2016-05-03 13:18     ` Tom Rini
2016-02-18 21:34 Andreas Bießmann
2016-02-19 13:00 ` Andreas Bießmann
2016-02-19 14:23   ` Tom Rini
2016-02-02 11:52 Andreas Bießmann
2016-02-02 15:49 ` Tom Rini
2015-11-30 21:30 Andreas Bießmann
2015-12-01  1:37 ` Tom Rini
2015-11-03 14:14 Andreas Bießmann
2015-11-03 16:09 ` Tom Rini
2015-11-01 21:04 Andreas Bießmann
2015-11-01 23:38 ` Tom Rini
2015-10-01  7:44 Andreas Bießmann
2015-10-03  0:35 ` Tom Rini
2015-09-11  7:45 Andreas Bießmann
2015-09-11 13:00 ` Tom Rini
2015-08-21 13:25 Andreas Bießmann
2015-08-21 13:36 ` Andreas Bießmann
2015-05-13 11:04 Andreas Bießmann
2015-05-14 19:14 ` Tom Rini
2015-03-31 23:11 Andreas Bießmann
2015-04-01  0:56 ` Tom Rini
2015-03-20  7:42 Andreas Bießmann
2015-03-20 15:24 ` Tom Rini
2015-02-07 23:48 Andreas Bießmann
2015-02-10 20:09 ` Tom Rini
2015-01-26 10:12 Andreas Bießmann
2015-01-27 11:51 ` Tom Rini
2015-01-11  1:32 Andreas Bießmann
2015-01-11  2:17 ` Tom Rini
2014-11-17 12:35 Andreas Bießmann
2014-11-17 14:50 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.